On Fri, Nov 18, 2005 at 05:11:51PM +0300, Vitaly Bordug wrote: > Marcelo Tosatti wrote: > >On Wed, Nov 16, 2005 at 03:04:33PM +0300, Vitaly Bordug wrote: > >>This adds board-specific files needed to utilize fs_enet Ethernet driver > >>for MPC885ADS and MPC866ADS. > >> > >>Signed-off-by: Vitaly Bordug <vbordug at ru.mvista.com> > >> > > > >Vitaly, > > > >It also sounds to me that mpc885_nonplatform_device_init() > >initialization suits board_init() time, instead of post-start_kernel() > >do_initcalls(). No? > > > > > > > Well, maybe, but it actually works and since this approach prevents messing > up the m8xx_setup.c with #ifdef hell, I prefer the additional > initialization to be there. > > If this is odd, I'll proceed with the right way of course.
No need to mess with m8xx_setup.c, just define your own board_init() function: +void __init +board_init(void) +{ + ppc_md.time_init = cyc_rtc_init; + ppc_md.set_rtc_time = cyc_set_rtc_time; + ppc_md.get_rtc_time = cyc_get_rtc_time; + ppc_md.restart = cyc_8xx_restart; +}