mirror of https://gitee.com/openkylin/linux.git
m68knommu: clean up init code in ColdFire 528x startup
We can move all the init calls in the initcall code into the more general arch setup code (which is config_BSP() here). That makes the 528x consistent with other ColdFire CPUs setup cod. It means we can get rif of the initcall setup here all together. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
This commit is contained in:
parent
2ba168a913
commit
9773be5f5f
|
@ -103,12 +103,6 @@ void __init config_BSP(char *commandp, int size)
|
||||||
#ifdef CONFIG_WILDFIREMOD
|
#ifdef CONFIG_WILDFIREMOD
|
||||||
mach_halt = wildfiremod_halt;
|
mach_halt = wildfiremod_halt;
|
||||||
#endif
|
#endif
|
||||||
}
|
|
||||||
|
|
||||||
/***************************************************************************/
|
|
||||||
|
|
||||||
static int __init init_BSP(void)
|
|
||||||
{
|
|
||||||
mach_reset = m528x_cpu_reset;
|
mach_reset = m528x_cpu_reset;
|
||||||
mach_sched_init = hw_timer_init;
|
mach_sched_init = hw_timer_init;
|
||||||
m528x_uarts_init();
|
m528x_uarts_init();
|
||||||
|
@ -116,9 +110,6 @@ static int __init init_BSP(void)
|
||||||
#ifdef CONFIG_SPI_COLDFIRE_QSPI
|
#ifdef CONFIG_SPI_COLDFIRE_QSPI
|
||||||
m528x_qspi_init();
|
m528x_qspi_init();
|
||||||
#endif
|
#endif
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(init_BSP);
|
|
||||||
|
|
||||||
/***************************************************************************/
|
/***************************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue