Skip to content

Commit

Permalink
Moved initialization of MPC8XX SCC to cpu_eth_init()
Browse files Browse the repository at this point in the history
Removed initialization of the driver from net/eth.c

Signed-off-by: Ben Warren <[email protected]>
  • Loading branch information
ben-skyportsystems committed Nov 10, 2008
1 parent a9bec96 commit 9eb79bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 4 additions & 0 deletions cpu/mpc8xx/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#include <watchdog.h>
#include <command.h>
#include <mpc8xx.h>
#include <commproc.h>
#include <netdev.h>
#include <asm/cache.h>

Expand Down Expand Up @@ -643,6 +644,9 @@ void reset_8xx_watchdog (volatile immap_t * immr)
*/
int cpu_eth_init(bd_t *bis)
{
#if defined(SCC_ENET)
scc_initialize(bis);
#endif
#if defined(FEC_ENET)
fec_initialize(bis);
#endif
Expand Down
1 change: 1 addition & 0 deletions include/netdev.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ int pcnet_initialize(bd_t *bis);
int plb2800_eth_initialize(bd_t *bis);
int rtl8139_initialize(bd_t *bis);
int rtl8169_initialize(bd_t *bis);
int scc_initialize(bd_t *bis);
int skge_initialize(bd_t *bis);
int tsi108_eth_initialize(bd_t *bis);
int uec_initialize(int index);
Expand Down
4 changes: 0 additions & 4 deletions net/eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ int board_eth_init(bd_t *bis) __attribute((weak, alias("__def_eth_init")));
extern int mv6436x_eth_initialize(bd_t *);
extern int mv6446x_eth_initialize(bd_t *);
extern int ppc_4xx_eth_initialize(bd_t *);
extern int scc_initialize(bd_t*);

#ifdef CONFIG_API
extern void (*push_packet)(volatile void *, int);
Expand Down Expand Up @@ -156,9 +155,6 @@ int eth_initialize(bd_t *bis)
#endif
#if defined(CONFIG_4xx) && !defined(CONFIG_IOP480) && !defined(CONFIG_AP1000)
ppc_4xx_eth_initialize(bis);
#endif
#ifdef SCC_ENET
scc_initialize(bis);
#endif
if (!eth_devices) {
puts ("No ethernet found.\n");
Expand Down

0 comments on commit 9eb79bd

Please sign in to comment.