e1000e: cleanup e1000_set_phys_id
Use the existing hw pointer. Signed-off-by: Bruce Allan <bruce.w.allan@intel.com> Tested-by: Aaron Brown <aaron.f.brown@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
66092f5925
commit
f23efdff77
|
@ -1856,11 +1856,11 @@ static int e1000_set_phys_id(struct net_device *netdev,
|
|||
break;
|
||||
|
||||
case ETHTOOL_ID_ON:
|
||||
adapter->hw.mac.ops.led_on(&adapter->hw);
|
||||
hw->mac.ops.led_on(hw);
|
||||
break;
|
||||
|
||||
case ETHTOOL_ID_OFF:
|
||||
adapter->hw.mac.ops.led_off(&adapter->hw);
|
||||
hw->mac.ops.led_off(hw);
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue