linux-stable/arch/m68k/sun3x/time.h
Arnd Bergmann f9a015391e 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>
2020-10-30 21:57:06 +01:00

19 lines
433 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef SUN3X_TIME_H
#define SUN3X_TIME_H
extern int sun3x_hwclk(int set, struct rtc_time *t);
void sun3x_sched_init(void);
struct mostek_dt {
volatile unsigned char csr;
volatile unsigned char sec;
volatile unsigned char min;
volatile unsigned char hour;
volatile unsigned char wday;
volatile unsigned char mday;
volatile unsigned char month;
volatile unsigned char year;
};
#endif