diff options
author | Greg Ungerer <gerg@uclinux.org> | 2011-12-24 13:04:05 +1000 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2012-03-05 09:43:09 +1000 |
commit | 9773be5f5fcbabb688bf05f85d594261a53a5ac0 (patch) | |
tree | 3f31254d709177437a0ce8483ed993157af688ed /arch/m68k | |
parent | 2ba168a913192ebe44ca1da06d46f4e13037392f (diff) |
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>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/platform/528x/config.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/m68k/platform/528x/config.c b/arch/m68k/platform/528x/config.c index 264456ce45d..98decc6beb3 100644 --- a/arch/m68k/platform/528x/config.c +++ b/arch/m68k/platform/528x/config.c @@ -103,12 +103,6 @@ void __init config_BSP(char *commandp, int size) #ifdef CONFIG_WILDFIREMOD mach_halt = wildfiremod_halt; #endif -} - -/***************************************************************************/ - -static int __init init_BSP(void) -{ mach_reset = m528x_cpu_reset; mach_sched_init = hw_timer_init; m528x_uarts_init(); @@ -116,9 +110,6 @@ static int __init init_BSP(void) #ifdef CONFIG_SPI_COLDFIRE_QSPI m528x_qspi_init(); #endif - return 0; } -arch_initcall(init_BSP); - /***************************************************************************/ |