aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorFred Fan <r01011@freescale.com>2009-02-20 10:38:48 +0800
committerFred Fan <r01011@freescale.com>2009-09-09 15:34:06 +0800
commit7f9232a943c7cff561b3765457ac43ea21bec6f7 (patch)
tree5836e1f088ebd8413e20f48f2a15587cd02c7ace /net
parent3d35d87d5482de23cd5dc4d7721b1086107cae50 (diff)
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')
-rw-r--r--net/eth.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/eth.c b/net/eth.c
index 9b503124f..bb8b6e4e8 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -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