mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-22 23:04:43 +00:00
sparc32: fix sparse warnings in time_32.c
Fix following warnings: time_32.c:63:1: warning: symbol 'rtc_lock' was not declared. Should it be static? time_32.c:357:13: warning: symbol 'time_init' was not declared. Should it be static? time_32.c:148:16: warning: dereference of noderef expression Add extern definition of rtc_lock in mc146818rtc.h. time_init() is called from init/main.c - add prototype to kernel.h. Use proper u32 __iomem * for master_l10_counter. Fix all users. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d2aca8f9a6
commit
fcea8b27f9
5 changed files with 16 additions and 7 deletions
|
@ -144,6 +144,9 @@ void __init auxio_power_probe(void);
|
|||
extern void __iomem *pcic_regs;
|
||||
void pcic_nmi(unsigned int pend, struct pt_regs *regs);
|
||||
|
||||
/* time_32.c */
|
||||
void __init time_init(void);
|
||||
|
||||
#else /* CONFIG_SPARC32 */
|
||||
#endif /* CONFIG_SPARC32 */
|
||||
#endif /* !(__SPARC_KERNEL_H) */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue