提交 a062d19e 编写于 作者: P Philippe Reynes 提交者: David S. Miller

net: net_netdev: use new api ethtool_{get|set}_link_ksettings

The ethtool api {get|set}_settings is deprecated.
We move this driver to new api {get|set}_link_ksettings.

As I don't have the hardware, I'd be very pleased if
someone may test this patch.
Signed-off-by: NPhilippe Reynes <tremyfr@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 3e3eec09
...@@ -372,18 +372,19 @@ static void ntb_get_drvinfo(struct net_device *ndev, ...@@ -372,18 +372,19 @@ static void ntb_get_drvinfo(struct net_device *ndev,
strlcpy(info->bus_info, pci_name(dev->pdev), sizeof(info->bus_info)); strlcpy(info->bus_info, pci_name(dev->pdev), sizeof(info->bus_info));
} }
static int ntb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) static int ntb_get_link_ksettings(struct net_device *dev,
struct ethtool_link_ksettings *cmd)
{ {
cmd->supported = SUPPORTED_Backplane; ethtool_link_ksettings_zero_link_mode(cmd, supported);
cmd->advertising = ADVERTISED_Backplane; ethtool_link_ksettings_add_link_mode(cmd, supported, Backplane);
ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN); ethtool_link_ksettings_zero_link_mode(cmd, advertising);
cmd->duplex = DUPLEX_FULL; ethtool_link_ksettings_add_link_mode(cmd, advertising, Backplane);
cmd->port = PORT_OTHER;
cmd->phy_address = 0; cmd->base.speed = SPEED_UNKNOWN;
cmd->transceiver = XCVR_DUMMY1; cmd->base.duplex = DUPLEX_FULL;
cmd->autoneg = AUTONEG_ENABLE; cmd->base.port = PORT_OTHER;
cmd->maxtxpkt = 0; cmd->base.phy_address = 0;
cmd->maxrxpkt = 0; cmd->base.autoneg = AUTONEG_ENABLE;
return 0; return 0;
} }
...@@ -391,7 +392,7 @@ static int ntb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) ...@@ -391,7 +392,7 @@ static int ntb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
static const struct ethtool_ops ntb_ethtool_ops = { static const struct ethtool_ops ntb_ethtool_ops = {
.get_drvinfo = ntb_get_drvinfo, .get_drvinfo = ntb_get_drvinfo,
.get_link = ethtool_op_get_link, .get_link = ethtool_op_get_link,
.get_settings = ntb_get_settings, .get_link_ksettings = ntb_get_link_ksettings,
}; };
static const struct ntb_queue_handlers ntb_netdev_handlers = { static const struct ntb_queue_handlers ntb_netdev_handlers = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册