aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorGravatar Arnd Bergmann <arnd@arndb.de> 2022-02-25 11:14:22 +0100
committerGravatar Arnd Bergmann <arnd@arndb.de> 2022-02-25 11:14:23 +0100
commitf03f10a9823ab8591afbc20ddaf9ce2aeb52ce59 (patch)
tree4a7ada9b3d0d47e4007414172f1bb9982bebf2dd /drivers
parentMerge tag 'imx-fixes-5.17-2' of git://git.kernel.org/pub/scm/linux/kernel/git... (diff)
parentARM: dts: Use 32KiHz oscillator on devkit8000 (diff)
downloadlinux-f03f10a9823ab8591afbc20ddaf9ce2aeb52ce59.tar.gz
linux-f03f10a9823ab8591afbc20ddaf9ce2aeb52ce59.tar.bz2
linux-f03f10a9823ab8591afbc20ddaf9ce2aeb52ce59.zip
Merge tag 'omap-for-v5.17/fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into arm/fixes
Fixes for omaps Fixes for devkit8000 timer regression. Similar to the earlier beagleboard fixes, we must not configure the clocksource drivers to use an alternative timer configuration. It causes unnecessary issues with power management. Only some old designs based on early beagleboard revisions with a miswired timer need to use the alternative timer. * tag 'omap-for-v5.17/fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap: ARM: dts: Use 32KiHz oscillator on devkit8000 ARM: dts: switch timer config to common devkit8000 devicetree Link: https://lore.kernel.org/r/pull-1645606483-876944@atomide.com Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clocksource/timer-ti-dm-systimer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/clocksource/timer-ti-dm-systimer.c b/drivers/clocksource/timer-ti-dm-systimer.c
index 5c40ca1d4740..1fccb457fcc5 100644
--- a/drivers/clocksource/timer-ti-dm-systimer.c
+++ b/drivers/clocksource/timer-ti-dm-systimer.c
@@ -241,8 +241,7 @@ static void __init dmtimer_systimer_assign_alwon(void)
bool quirk_unreliable_oscillator = false;
/* Quirk unreliable 32 KiHz oscillator with incomplete dts */
- if (of_machine_is_compatible("ti,omap3-beagle-ab4") ||
- of_machine_is_compatible("timll,omap3-devkit8000")) {
+ if (of_machine_is_compatible("ti,omap3-beagle-ab4")) {
quirk_unreliable_oscillator = true;
counter_32k = -ENODEV;
}