mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
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:
parent
235949d162
commit
25943071b4
@ -254,14 +254,14 @@ ixgb_set_tso(struct net_device *netdev, uint32_t data)
|
||||
static uint32_t
|
||||
ixgb_get_msglevel(struct net_device *netdev)
|
||||
{
|
||||
struct ixgb_adapter *adapter = netdev->priv;
|
||||
struct ixgb_adapter *adapter = netdev_priv(netdev);
|
||||
return adapter->msg_enable;
|
||||
}
|
||||
|
||||
static void
|
||||
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;
|
||||
}
|
||||
#define IXGB_GET_STAT(_A_, _R_) _A_->stats._R_
|
||||
|
Loading…
Reference in New Issue
Block a user