Skip to content

Commit

Permalink
net: 8021q: use __ethtool_get_ksettings
Browse files Browse the repository at this point in the history
Signed-off-by: David Decotigny <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
David Decotigny authored and davem330 committed Feb 26, 2016
1 parent 17605b9 commit 5770979
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions net/8021q/vlan_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -621,12 +621,12 @@ static netdev_features_t vlan_dev_fix_features(struct net_device *dev,
return features;
}

static int vlan_ethtool_get_settings(struct net_device *dev,
struct ethtool_cmd *cmd)
static int vlan_ethtool_get_link_ksettings(struct net_device *dev,
struct ethtool_link_ksettings *cmd)
{
const struct vlan_dev_priv *vlan = vlan_dev_priv(dev);

return __ethtool_get_settings(vlan->real_dev, cmd);
return __ethtool_get_link_ksettings(vlan->real_dev, cmd);
}

static void vlan_ethtool_get_drvinfo(struct net_device *dev,
Expand Down Expand Up @@ -741,7 +741,7 @@ static int vlan_dev_get_iflink(const struct net_device *dev)
}

static const struct ethtool_ops vlan_ethtool_ops = {
.get_settings = vlan_ethtool_get_settings,
.get_link_ksettings = vlan_ethtool_get_link_ksettings,
.get_drvinfo = vlan_ethtool_get_drvinfo,
.get_link = ethtool_op_get_link,
.get_ts_info = vlan_ethtool_get_ts_info,
Expand Down

0 comments on commit 5770979

Please sign in to comment.