]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
net: tn40xx: add initial ethtool_ops support
authorFUJITA Tomonori <fujita.tomonori@gmail.com>
Fri, 28 Jun 2024 13:41:16 +0000 (22:41 +0900)
committerDavid S. Miller <davem@davemloft.net>
Mon, 1 Jul 2024 10:00:39 +0000 (11:00 +0100)
Call phylink_ethtool_ksettings_get() for get_link_ksettings method and
ethtool_op_get_link() for get_link method.

Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/tehuti/tn40.c

index 11db9fde11fe2952e8524e86115d26a039bbf234..565b72537efa8a1568b44dd68b2bd5dacff184b5 100644 (file)
@@ -1571,6 +1571,19 @@ static const struct net_device_ops tn40_netdev_ops = {
        .ndo_vlan_rx_kill_vid = tn40_vlan_rx_kill_vid,
 };
 
+static int tn40_ethtool_get_link_ksettings(struct net_device *ndev,
+                                          struct ethtool_link_ksettings *cmd)
+{
+       struct tn40_priv *priv = netdev_priv(ndev);
+
+       return phylink_ethtool_ksettings_get(priv->phylink, cmd);
+}
+
+static const struct ethtool_ops tn40_ethtool_ops = {
+       .get_link               = ethtool_op_get_link,
+       .get_link_ksettings     = tn40_ethtool_get_link_ksettings,
+};
+
 static int tn40_priv_init(struct tn40_priv *priv)
 {
        int ret;
@@ -1599,6 +1612,7 @@ static struct net_device *tn40_netdev_alloc(struct pci_dev *pdev)
        if (!ndev)
                return NULL;
        ndev->netdev_ops = &tn40_netdev_ops;
+       ndev->ethtool_ops = &tn40_ethtool_ops;
        ndev->tx_queue_len = TN40_NDEV_TXQ_LEN;
        ndev->mem_start = pci_resource_start(pdev, 0);
        ndev->mem_end = pci_resource_end(pdev, 0);