From: ksi@koi8.net Date: Sat, 7 Feb 2009 00:27:55 +0000 (-0800) Subject: Fix MPC8260 with ethernet on SCC X-Git-Tag: v2009.03-rc1~94 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2bc2a8f6dc9fdda465317da59474e65c24a398a2;p=platform%2Fkernel%2Fu-boot.git Fix MPC8260 with ethernet on SCC This fixes MPC8260 compilation with ethernet on SCC. Probably was a typo or something... Signed-off-by: Sergey Kubushyn Signed-off-by: Ben Warren --- diff --git a/cpu/mpc8260/cpu.c b/cpu/mpc8260/cpu.c index f4beca5..1b034cd 100644 --- a/cpu/mpc8260/cpu.c +++ b/cpu/mpc8260/cpu.c @@ -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; }