summaryrefslogtreecommitdiff
path: root/cpu/mpc8260
diff options
context:
space:
mode:
authorksi@koi8.net <ksi@koi8.net>2009-02-06 16:27:55 -0800
committerBen Warren <biggerbadderben@gmail.com>2009-02-09 22:47:06 -0800
commit2bc2a8f6dc9fdda465317da59474e65c24a398a2 (patch)
treedabcd09e26f76f02cb41f13aac7125e0c82cbcc5 /cpu/mpc8260
parentae5d8f613cec1a6af7bf1fc9c42a3b856f021023 (diff)
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>
Diffstat (limited to 'cpu/mpc8260')
-rw-r--r--cpu/mpc8260/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc8260/cpu.c b/cpu/mpc8260/cpu.c
index f4beca55b..1b034cd57 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;
}