Skip to content

Commit

Permalink
lan743x: Add support for ethtool message level
Browse files Browse the repository at this point in the history
Implement ethtool message level

Signed-off-by: Bryan Whitehead <Bryan.Whitehead@microchip.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Bryan Whitehead authored and David S. Miller committed Jul 23, 2018
1 parent 8114e8a commit 2958337
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions drivers/net/ethernet/microchip/lan743x_ethtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@ static void lan743x_ethtool_get_drvinfo(struct net_device *netdev,
pci_name(adapter->pdev), sizeof(info->bus_info));
}

static u32 lan743x_ethtool_get_msglevel(struct net_device *netdev)
{
struct lan743x_adapter *adapter = netdev_priv(netdev);

return adapter->msg_enable;
}

static void lan743x_ethtool_set_msglevel(struct net_device *netdev,
u32 msglevel)
{
struct lan743x_adapter *adapter = netdev_priv(netdev);

adapter->msg_enable = msglevel;
}

static const char lan743x_set0_hw_cnt_strings[][ETH_GSTRING_LEN] = {
"RX FCS Errors",
"RX Alignment Errors",
Expand Down Expand Up @@ -196,6 +211,8 @@ static int lan743x_ethtool_get_sset_count(struct net_device *netdev, int sset)

const struct ethtool_ops lan743x_ethtool_ops = {
.get_drvinfo = lan743x_ethtool_get_drvinfo,
.get_msglevel = lan743x_ethtool_get_msglevel,
.set_msglevel = lan743x_ethtool_set_msglevel,
.get_link = ethtool_op_get_link,

.get_strings = lan743x_ethtool_get_strings,
Expand Down

0 comments on commit 2958337

Please sign in to comment.