summaryrefslogtreecommitdiff
path: root/drivers/net/phy/phy.c
diff options
context:
space:
mode:
authorYegor Yefremov <yegorslists@googlemail.com>2012-11-28 11:15:18 +0100
committerJoe Hershberger <joe.hershberger@ni.com>2013-06-24 19:07:32 -0500
commit0fae25089d9e3303e952a4227bd2c1edccabfa20 (patch)
treee37f4668ae48226b362a0d10131bf3a7575e5174 /drivers/net/phy/phy.c
parente2043f5c272d14a0e0acd81382f17cfc883136d6 (diff)
downloadu-boot-imx-0fae25089d9e3303e952a4227bd2c1edccabfa20.zip
u-boot-imx-0fae25089d9e3303e952a4227bd2c1edccabfa20.tar.gz
u-boot-imx-0fae25089d9e3303e952a4227bd2c1edccabfa20.tar.bz2
net: add ICPlus PHY driver
The driver code was taken from Linux kernel source: drivers/net/phy/icplus.c Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Diffstat (limited to 'drivers/net/phy/phy.c')
-rw-r--r--drivers/net/phy/phy.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c
index 8f4c0c6..77d19c6 100644
--- a/drivers/net/phy/phy.c
+++ b/drivers/net/phy/phy.c
@@ -433,6 +433,9 @@ int phy_init(void)
#ifdef CONFIG_PHY_ET1011C
phy_et1011c_init();
#endif
+#ifdef CONFIG_PHY_ICPLUS
+ phy_icplus_init();
+#endif
#ifdef CONFIG_PHY_LXT
phy_lxt_init();
#endif