diff options
author | Fred Fan <r01011@freescale.com> | 2009-02-20 10:38:48 +0800 |
---|---|---|
committer | Fred Fan <r01011@freescale.com> | 2009-09-09 15:34:06 +0800 |
commit | 7f9232a943c7cff561b3765457ac43ea21bec6f7 (patch) | |
tree | 5836e1f088ebd8413e20f48f2a15587cd02c7ace /net/eth.c | |
parent | 3d35d87d5482de23cd5dc4d7721b1086107cae50 (diff) | |
download | u-boot-imx-7f9232a943c7cff561b3765457ac43ea21bec6f7.zip u-boot-imx-7f9232a943c7cff561b3765457ac43ea21bec6f7.tar.gz u-boot-imx-7f9232a943c7cff561b3765457ac43ea21bec6f7.tar.bz2 |
ENGR00081147 Support i.MX35 3stack board
Support boot from NOR flash
Support Multiple ethernet:LAN9217 and FEC
Support upgrade u-boot
Signed-off-by: Fred Fan <r01011@freescale.com>
Diffstat (limited to 'net/eth.c')
-rw-r--r-- | net/eth.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2,6 +2,8 @@ * (C) Copyright 2001-2004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * + * (C) Copyright 2008-2009 Freescale Semiconductor, Inc. + * * See file CREDITS for list of people who contributed to this * project. * @@ -516,6 +518,9 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_DRIVER_NS7520_ETHERNET) ns7520_miiphy_initialize(bis); #endif +#if defined(CONFIG_DRIVER_SMC911X) + smc911x_initialize(bis); +#endif return 0; } #endif |