diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-06-06 21:04:19 -0300 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2013-08-19 12:34:18 -0500 |
commit | 25634210af785e36cf73a5e9a103c8cac5d84a26 (patch) | |
tree | 4e7b13b708ea89ecc8901a0a3b608000b65bef81 /drivers/net | |
parent | 012a2c15d781d327c9de8734f2b2b3f793a58724 (diff) | |
download | u-boot-imx-25634210af785e36cf73a5e9a103c8cac5d84a26.zip u-boot-imx-25634210af785e36cf73a5e9a103c8cac5d84a26.tar.gz u-boot-imx-25634210af785e36cf73a5e9a103c8cac5d84a26.tar.bz2 |
phy: smsc: LAN8710/8720 are not Gbit PHYs
LAN8710/8720 are 10/100 Mbps PHYs, so fix the '.features' field.
Cc: Joe Hershberger <joe.hershberger@ni.com>
Cc: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/phy/smsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/smsc.c b/drivers/net/phy/smsc.c index f64eb8f..5936f9b 100644 --- a/drivers/net/phy/smsc.c +++ b/drivers/net/phy/smsc.c @@ -62,7 +62,7 @@ static struct phy_driver lan8710_driver = { .name = "SMSC LAN8710/LAN8720", .uid = 0x0007c0f0, .mask = 0xffff0, - .features = PHY_GBIT_FEATURES, + .features = PHY_BASIC_FEATURES, .config = &genphy_config_aneg, .startup = &smsc_startup, .shutdown = &genphy_shutdown, |