Commit 25943071 authored by Auke Kok's avatar Auke Kok Committed by Auke Kok

ixgb: replace netdev->priv with netdev_priv()

fix netdev->priv ==> netdev_priv(netdev)
Signed-off-by: default avatarJesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: default avatarAuke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: default avatarJohn Ronciak <john.ronciak@intel.com>
parent 235949d1
...@@ -254,14 +254,14 @@ ixgb_set_tso(struct net_device *netdev, uint32_t data) ...@@ -254,14 +254,14 @@ ixgb_set_tso(struct net_device *netdev, uint32_t data)
static uint32_t static uint32_t
ixgb_get_msglevel(struct net_device *netdev) ixgb_get_msglevel(struct net_device *netdev)
{ {
struct ixgb_adapter *adapter = netdev->priv; struct ixgb_adapter *adapter = netdev_priv(netdev);
return adapter->msg_enable; return adapter->msg_enable;
} }
static void static void
ixgb_set_msglevel(struct net_device *netdev, uint32_t data) ixgb_set_msglevel(struct net_device *netdev, uint32_t data)
{ {
struct ixgb_adapter *adapter = netdev->priv; struct ixgb_adapter *adapter = netdev_priv(netdev);
adapter->msg_enable = data; adapter->msg_enable = data;
} }
#define IXGB_GET_STAT(_A_, _R_) _A_->stats._R_ #define IXGB_GET_STAT(_A_, _R_) _A_->stats._R_
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment