From 25634210af785e36cf73a5e9a103c8cac5d84a26 Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Thu, 6 Jun 2013 21:04:19 -0300 Subject: [PATCH] phy: smsc: LAN8710/8720 are not Gbit PHYs LAN8710/8720 are 10/100 Mbps PHYs, so fix the '.features' field. Cc: Joe Hershberger Cc: Nobuhiro Iwamatsu Signed-off-by: Fabio Estevam --- drivers/net/phy/smsc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,