]> git.sur5r.net Git - u-boot/commitdiff
Fix MPC8260 with ethernet on SCC
authorksi@koi8.net <ksi@koi8.net>
Sat, 7 Feb 2009 00:27:55 +0000 (16:27 -0800)
committerBen Warren <biggerbadderben@gmail.com>
Tue, 10 Feb 2009 06:47:06 +0000 (22:47 -0800)
This fixes MPC8260 compilation with ethernet on SCC. Probably was a
typo or something...

Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
cpu/mpc8260/cpu.c

index f4beca55be0d673392aacc4e68e679d5b411d0bf..1b034cd5747cf2f154e7a22fa3d2105f752e5309 100644 (file)
@@ -327,7 +327,7 @@ int cpu_eth_init(bd_t *bis)
        fec_initialize(bis);
 #endif
 #if defined(CONFIG_ETHER_ON_SCC)
-       mpc82xx_scc_enet_initialize(bd);
+       mpc82xx_scc_enet_initialize(bis);
 #endif
        return 0;
 }