Explorar o código

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 <ksi@koi8.net>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
ksi@koi8.net %!s(int64=16) %!d(string=hai) anos
pai
achega
2bc2a8f6dc
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      cpu/mpc8260/cpu.c

+ 1 - 1
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;
 }