mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
f9a015391e
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>
19 lines
433 B
C
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
|