diff options
author | Arnd Bergmann <arnd@arndb.de> | 2020-09-24 16:40:58 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2020-10-30 21:57:06 +0100 |
commit | 4a1c287aabba8b3a8efbfb2381d95c38470ed171 (patch) | |
tree | db04e38bf3cbb0ee3a85b16316b601aa292a1959 /arch/m68k/Kconfig.machine | |
parent | d6444094042b4f4b4623dc1a2437f61309b9b34b (diff) | |
download | linux-4a1c287aabba8b3a8efbfb2381d95c38470ed171.tar.gz linux-4a1c287aabba8b3a8efbfb2381d95c38470ed171.tar.bz2 linux-4a1c287aabba8b3a8efbfb2381d95c38470ed171.zip |
m68k: sun3/sun3c: use legacy_timer_tick
These two are different from all other machines:
* sun3 does not call timer_routine() but open-codes it
except for the profile_tick() call that appears to
be unintentionally missing.
* sun3x has a commented-out timer irq handler but no
functional timer tick I could find.
Change both to calling the new legacy_timer_tick here,
which includes the call to profile_tick() but does not
fix sun3x as that is still commented out.
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/m68k/Kconfig.machine')
-rw-r--r-- | arch/m68k/Kconfig.machine | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/m68k/Kconfig.machine b/arch/m68k/Kconfig.machine index 17e8c3a292d7..e3c835440d9a 100644 --- a/arch/m68k/Kconfig.machine +++ b/arch/m68k/Kconfig.machine @@ -99,6 +99,7 @@ config HP300 config SUN3X bool "Sun3x support" depends on MMU + select LEGACY_TIMER_TICK select MMU_MOTOROLA if MMU select M68030 help @@ -126,6 +127,7 @@ config SUN3 depends on MMU depends on !MMU_MOTOROLA select MMU_SUN3 if MMU + select LEGACY_TIMER_TICK select NO_DMA select M68020 help |