diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-08-31 10:39:12 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-09-02 21:18:18 -0700 |
commit | e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d (patch) | |
tree | 1ebc9217b2cd886948db05c4ab28ea101df4bd53 /board/matrix_vision/mvbc_p/mvbc_p.c | |
parent | a0aad08f9427ac00218bdb2cb649833ce6ec9b8d (diff) | |
download | u-boot-imx-e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d.zip u-boot-imx-e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d.tar.gz u-boot-imx-e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d.tar.bz2 |
Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
Modified board_eth_init() functions of boards that have this FEC in addition
to other Ethernet controllers.
Affected boards:
bc3450
icecube
mvbc_p
o2dnt
pm520
total5200
tq5200
Removed initialization of controller from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/matrix_vision/mvbc_p/mvbc_p.c')
-rw-r--r-- | board/matrix_vision/mvbc_p/mvbc_p.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/matrix_vision/mvbc_p/mvbc_p.c b/board/matrix_vision/mvbc_p/mvbc_p.c index 3332f5a..648b45e 100644 --- a/board/matrix_vision/mvbc_p/mvbc_p.c +++ b/board/matrix_vision/mvbc_p/mvbc_p.c @@ -35,6 +35,7 @@ #include <fpga.h> #include <environment.h> #include <fdt_support.h> +#include <netdev.h> #include <asm/io.h> #include "fpga.h" #include "mvbc_p.h" @@ -324,3 +325,8 @@ void ft_board_setup(void *blob, bd_t *bd) ft_cpu_setup(blob, bd); fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); } + +int board_eth_init(bd_t *bis) +{ + return cpu_eth_init(bis); /* Built in FEC comes first */ +} |