diff options
Diffstat (limited to 'drivers/net/tulip/de2104x.c')
-rw-r--r-- | drivers/net/tulip/de2104x.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/tulip/de2104x.c b/drivers/net/tulip/de2104x.c index b13c6b040be3..f8d26bf9b2c4 100644 --- a/drivers/net/tulip/de2104x.c +++ b/drivers/net/tulip/de2104x.c | |||
@@ -1549,10 +1549,11 @@ static int __de_set_settings(struct de_private *de, struct ethtool_cmd *ecmd) | |||
1549 | { | 1549 | { |
1550 | u32 new_media; | 1550 | u32 new_media; |
1551 | unsigned int media_lock; | 1551 | unsigned int media_lock; |
1552 | u32 speed = ethtool_cmd_speed(ecmd); | ||
1552 | 1553 | ||
1553 | if (ecmd->speed != SPEED_10 && ecmd->speed != 5 && ecmd->speed != 2) | 1554 | if (speed != SPEED_10 && speed != 5 && speed != 2) |
1554 | return -EINVAL; | 1555 | return -EINVAL; |
1555 | if (de->de21040 && ecmd->speed == 2) | 1556 | if (de->de21040 && speed == 2) |
1556 | return -EINVAL; | 1557 | return -EINVAL; |
1557 | if (ecmd->duplex != DUPLEX_HALF && ecmd->duplex != DUPLEX_FULL) | 1558 | if (ecmd->duplex != DUPLEX_HALF && ecmd->duplex != DUPLEX_FULL) |
1558 | return -EINVAL; | 1559 | return -EINVAL; |