diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-08-31 10:44:19 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-09-02 21:18:18 -0700 |
commit | ad3381cf4167120db5c7b88e4970245e1d5c0a32 (patch) | |
tree | 93a19cb4ee835e33553e591c9c55c11cb3763548 /board/pm854/pm854.c | |
parent | 4fce2aceaf8afd31a252bc782c9dbc497bf40487 (diff) |
Moved initialization of E1000 Ethernet controller to board_eth_init()
Affected boards:
ap1000
mvbc_p
PM854
Removed initialization of the driver from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/pm854/pm854.c')
-rw-r--r-- | board/pm854/pm854.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/pm854/pm854.c b/board/pm854/pm854.c index 7dbafb9a83b..f366814618f 100644 --- a/board/pm854/pm854.c +++ b/board/pm854/pm854.c @@ -27,6 +27,7 @@ #include <common.h> #include <pci.h> +#include <netdev.h> #include <asm/processor.h> #include <asm/mmu.h> #include <asm/immap_85xx.h> @@ -289,3 +290,8 @@ pci_init_board(void) pci_mpc85xx_init(&hose); #endif /* CONFIG_PCI */ } + +int board_eth_init(bd_t *bis) +{ + return pci_eth_init(bis); +} |