summaryrefslogtreecommitdiffstats
path: root/arch/ppc
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-12 09:22:25 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2007-07-12 09:22:25 +0200
commite054dd9ee48dd0460765d454c72fbad18437f8dc (patch)
treeb9ef6fa974bd3ad4d79e11e751431b438535986c /arch/ppc
parentbcf8a2f798fff9d8f9cf3b4579c3e1dee9379070 (diff)
downloadbarebox-e054dd9ee48dd0460765d454c72fbad18437f8dc.tar.gz
barebox-e054dd9ee48dd0460765d454c72fbad18437f8dc.tar.xz
do loadtask in ethernet driver
Diffstat (limited to 'arch/ppc')
-rw-r--r--arch/ppc/mach-mpc5xxx/cpu_init.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/arch/ppc/mach-mpc5xxx/cpu_init.c b/arch/ppc/mach-mpc5xxx/cpu_init.c
index b8c069f3a0..303e248ce5 100644
--- a/arch/ppc/mach-mpc5xxx/cpu_init.c
+++ b/arch/ppc/mach-mpc5xxx/cpu_init.c
@@ -34,6 +34,7 @@
void cpu_init_f (void)
{
unsigned long addecr = (1 << 25); /* Boot_CS */
+
#if defined(CFG_RAMBOOT) && defined(CONFIG_MGT5100)
addecr |= (1 << 22); /* SDRAM enable */
#endif
@@ -192,10 +193,5 @@ int cpu_init_r (void)
/* route critical ints to normal ints */
*(vu_long *)MPC5XXX_ICTL_EXT |= 0x00000001;
-#ifdef CONFIG_DRIVER_NET_MPC5200
- /* load FEC microcode */
- loadtask(0, 2);
-#endif
-
- return (0);
+ return 0;
}