diff options
author | Arnd Bergmann <arnd@arndb.de> | 2020-09-24 17:29:17 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2020-10-30 21:57:06 +0100 |
commit | f9a015391e8908e68bd3147a8a5d8ac5f3ea2126 (patch) | |
tree | 07c2b0dfa4b4794317c1dcd3b1340c28753ed6a4 /arch/m68k/sun3 | |
parent | 42f1d57f055064ed320d7292b95819dd81dda409 (diff) | |
download | linux-stable-f9a015391e8908e68bd3147a8a5d8ac5f3ea2126.tar.gz linux-stable-f9a015391e8908e68bd3147a8a5d8ac5f3ea2126.tar.bz2 linux-stable-f9a015391e8908e68bd3147a8a5d8ac5f3ea2126.zip |
m68k: remove timer_interrupt() function
This gets passed to a number of init functions, but is
ignored everywhere, so remove the function and change the
mach_sched_init callback to take no arguments.
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Tested-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/sun3')
-rw-r--r-- | arch/m68k/sun3/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/sun3/config.c b/arch/m68k/sun3/config.c index 7204c0ea0dc7..f7dd47232b6c 100644 --- a/arch/m68k/sun3/config.c +++ b/arch/m68k/sun3/config.c @@ -36,7 +36,7 @@ char sun3_reserved_pmeg[SUN3_PMEGS_NUM]; -static void sun3_sched_init(irq_handler_t handler); +static void sun3_sched_init(void); extern void sun3_get_model (char* model); extern int sun3_hwclk(int set, struct rtc_time *t); @@ -151,7 +151,7 @@ void __init config_sun3(void) sun3_bootmem_alloc(memory_start, memory_end); } -static void __init sun3_sched_init(irq_handler_t timer_routine) +static void __init sun3_sched_init(void) { sun3_disable_interrupts(); intersil_clock->cmd_reg=(INTERSIL_RUN|INTERSIL_INT_DISABLE|INTERSIL_24H_MODE); |