
30 Aug
2011
30 Aug
'11
5:10 p.m.
On Tuesday, August 30, 2011 09:00:10 stany MARCEL wrote:
--- a/arch/m68k/cpu/mcf547x_8x/slicetimer.c +++ b/arch/m68k/cpu/mcf547x_8x/slicetimer.c
-void timer_init(void) +int timer_init(void)
you should have gotten a build error as the prototype is in common.h. so please add an include for common.h to this file.
--- a/arch/m68k/lib/board.c +++ b/arch/m68k/lib/board.c
-extern void timer_init(void); +extern int timer_init(void);
drop the extern and include common.h
--- a/arch/m68k/lib/time.c +++ b/arch/m68k/lib/time.c
-void timer_init(void) +int timer_init(void)
include common.h in this file too -mike