diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-08-31 10:03:22 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-09-02 21:18:16 -0700 |
commit | 19403633dd70333893c2da7926a1d0dcd6dab7d8 (patch) | |
tree | d3221ae7aec8fde6b0f94d99bb42a7afdbd9a139 /board/tqc/tqm5200 | |
parent | ccdd12f83ef93719fbe85f642aa4dc648b9498f0 (diff) | |
download | u-boot-imx-19403633dd70333893c2da7926a1d0dcd6dab7d8.zip u-boot-imx-19403633dd70333893c2da7926a1d0dcd6dab7d8.tar.gz u-boot-imx-19403633dd70333893c2da7926a1d0dcd6dab7d8.tar.bz2 |
Moved initialization of NS8382X Ethernet controller to board_eth_init()
Affected boards:
bc3450
cpci5200
mecp5200
pf2000
icecube
o2dnt
pm520
sandpoint8245
total5200
tqm5200
Removed initialization of the driver from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/tqc/tqm5200')
-rw-r--r-- | board/tqc/tqm5200/tqm5200.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/tqc/tqm5200/tqm5200.c b/board/tqc/tqm5200/tqm5200.c index 8b8e461..d75aa9b 100644 --- a/board/tqc/tqm5200/tqm5200.c +++ b/board/tqc/tqm5200/tqm5200.c @@ -32,6 +32,7 @@ #include <pci.h> #include <asm/processor.h> #include <libfdt.h> +#include <netdev.h> #ifdef CONFIG_VIDEO_SM501 #include <sm501.h> @@ -749,3 +750,8 @@ void ft_board_setup(void *blob, bd_t *bd) fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); } #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */ + +int board_eth_init(bd_t *bis) +{ + return pci_eth_init(bis); +} |