ixgb: replace netdev->priv with netdev_priv()
fix netdev->priv ==> netdev_priv(netdev) Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com> Signed-off-by: John Ronciak <john.ronciak@intel.com>
This commit is contained in:
@@ -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_
|
||||||
|
Reference in New Issue
Block a user