diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2009-08-08 10:42:30 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-08-28 17:12:40 -0500 |
commit | b560ab85edfb68da653bf2527c390c3e182392a1 (patch) | |
tree | 0f875a60fb769fb80ac010661b22abbe4de4bd88 /board | |
parent | 1bb61b69f7aba4931ede35fdcabd8e5ecad121d7 (diff) | |
download | u-boot-b560ab85edfb68da653bf2527c390c3e182392a1.zip u-boot-b560ab85edfb68da653bf2527c390c3e182392a1.tar.gz u-boot-b560ab85edfb68da653bf2527c390c3e182392a1.tar.bz2 |
85xx: Init pci ethernet cards if we enable any on MPC8572DS
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mpc8572ds/mpc8572ds.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/freescale/mpc8572ds/mpc8572ds.c b/board/freescale/mpc8572ds/mpc8572ds.c index 59d7519..7da70fe 100644 --- a/board/freescale/mpc8572ds/mpc8572ds.c +++ b/board/freescale/mpc8572ds/mpc8572ds.c @@ -34,6 +34,7 @@ #include <libfdt.h> #include <fdt_support.h> #include <tsec.h> +#include <netdev.h> #include "../common/pixis.h" #include "../common/sgmii_riser.h" @@ -562,7 +563,7 @@ int board_eth_init(bd_t *bis) tsec_eth_init(bis, tsec_info, num); - return 0; + return pci_eth_init(bis); } #endif |