Skip to content

Commit 26eb00a

Browse files
lunndavem330
authored andcommitted
net: phy: et1011c: Remove incorrect missing 1000 Half
The driver indicates it can do 10/100 full and half duplex, plus 1G Full. The datasheet indicates 1G half is also supported. So make use of the standard PHY_GBIT_FEATURES. It could be, this was added because there is a MAC which does not support 1G half. Bit this is the wrong place to enforce this. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 4ef972f commit 26eb00a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/phy/et1011c.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ static struct phy_driver et1011c_driver[] = { {
9191
.phy_id = 0x0282f014,
9292
.name = "ET1011C",
9393
.phy_id_mask = 0xfffffff0,
94-
.features = (PHY_BASIC_FEATURES | SUPPORTED_1000baseT_Full),
94+
.features = PHY_GBIT_FEATURES,
9595
.flags = PHY_POLL,
9696
.config_aneg = et1011c_config_aneg,
9797
.read_status = et1011c_read_status,

0 commit comments

Comments
 (0)