aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/niu.c
diff options
context:
space:
mode:
authorDavid Decotigny <decot@google.com>2011-04-27 14:32:39 -0400
committerDavid S. Miller <davem@davemloft.net>2011-04-29 17:03:00 -0400
commit25db0338813a8915457636b1f6abe6a28fa73f8d (patch)
tree29ea39e45de1342beb4e3c58da0cfbc9915b617e /drivers/net/niu.c
parent8ae6daca85c8bbd6a32c382db5e2a2a989f8bed2 (diff)
ethtool: Use full 32 bit speed range in ethtool's set_settings
This makes sure the ethtool's set_settings() callback of network drivers don't ignore the 16 most significant bits when ethtool calls their set_settings(). All drivers compiled with make allyesconfig on x86_64 have been updated. Signed-off-by: David Decotigny <decot@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/niu.c')
-rw-r--r--drivers/net/niu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/niu.c b/drivers/net/niu.c
index a7072174ffa7..524e800ddcf4 100644
--- a/drivers/net/niu.c
+++ b/drivers/net/niu.c
@@ -6859,7 +6859,7 @@ static int niu_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
6859 struct niu_link_config *lp = &np->link_config; 6859 struct niu_link_config *lp = &np->link_config;
6860 6860
6861 lp->advertising = cmd->advertising; 6861 lp->advertising = cmd->advertising;
6862 lp->speed = cmd->speed; 6862 lp->speed = ethtool_cmd_speed(cmd);
6863 lp->duplex = cmd->duplex; 6863 lp->duplex = cmd->duplex;
6864 lp->autoneg = cmd->autoneg; 6864 lp->autoneg = cmd->autoneg;
6865 return niu_init_link(np); 6865 return niu_init_link(np);