|
@@ -1755,46 +1755,28 @@ static int e1000_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
-/* toggle LED 4 times per second = 2 "blinks" per second */
|
|
|
|
-#define E1000_ID_INTERVAL (HZ/4)
|
|
|
|
-
|
|
|
|
-/* bit defines for adapter->led_status */
|
|
|
|
-#define E1000_LED_ON 0
|
|
|
|
-
|
|
|
|
-static void e1000_led_blink_callback(unsigned long data)
|
|
|
|
|
|
+static int e1000_set_phys_id(struct net_device *netdev,
|
|
|
|
+ enum ethtool_phys_id_state state)
|
|
{
|
|
{
|
|
- struct e1000_adapter *adapter = (struct e1000_adapter *) data;
|
|
|
|
|
|
+ struct e1000_adapter *adapter = netdev_priv(netdev);
|
|
struct e1000_hw *hw = &adapter->hw;
|
|
struct e1000_hw *hw = &adapter->hw;
|
|
|
|
|
|
- if (test_and_change_bit(E1000_LED_ON, &adapter->led_status))
|
|
|
|
- e1000_led_off(hw);
|
|
|
|
- else
|
|
|
|
- e1000_led_on(hw);
|
|
|
|
-
|
|
|
|
- mod_timer(&adapter->blink_timer, jiffies + E1000_ID_INTERVAL);
|
|
|
|
-}
|
|
|
|
|
|
+ switch (state) {
|
|
|
|
+ case ETHTOOL_ID_ACTIVE:
|
|
|
|
+ e1000_setup_led(hw);
|
|
|
|
+ return 2;
|
|
|
|
|
|
-static int e1000_phys_id(struct net_device *netdev, u32 data)
|
|
|
|
-{
|
|
|
|
- struct e1000_adapter *adapter = netdev_priv(netdev);
|
|
|
|
- struct e1000_hw *hw = &adapter->hw;
|
|
|
|
|
|
+ case ETHTOOL_ID_ON:
|
|
|
|
+ e1000_led_on(hw);
|
|
|
|
+ break;
|
|
|
|
|
|
- if (!data)
|
|
|
|
- data = INT_MAX;
|
|
|
|
|
|
+ case ETHTOOL_ID_OFF:
|
|
|
|
+ e1000_led_off(hw);
|
|
|
|
+ break;
|
|
|
|
|
|
- if (!adapter->blink_timer.function) {
|
|
|
|
- init_timer(&adapter->blink_timer);
|
|
|
|
- adapter->blink_timer.function = e1000_led_blink_callback;
|
|
|
|
- adapter->blink_timer.data = (unsigned long)adapter;
|
|
|
|
|
|
+ case ETHTOOL_ID_INACTIVE:
|
|
|
|
+ e1000_cleanup_led(hw);
|
|
}
|
|
}
|
|
- e1000_setup_led(hw);
|
|
|
|
- mod_timer(&adapter->blink_timer, jiffies);
|
|
|
|
- msleep_interruptible(data * 1000);
|
|
|
|
- del_timer_sync(&adapter->blink_timer);
|
|
|
|
-
|
|
|
|
- e1000_led_off(hw);
|
|
|
|
- clear_bit(E1000_LED_ON, &adapter->led_status);
|
|
|
|
- e1000_cleanup_led(hw);
|
|
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
@@ -1931,7 +1913,7 @@ static const struct ethtool_ops e1000_ethtool_ops = {
|
|
.set_tso = e1000_set_tso,
|
|
.set_tso = e1000_set_tso,
|
|
.self_test = e1000_diag_test,
|
|
.self_test = e1000_diag_test,
|
|
.get_strings = e1000_get_strings,
|
|
.get_strings = e1000_get_strings,
|
|
- .phys_id = e1000_phys_id,
|
|
|
|
|
|
+ .set_phys_id = e1000_set_phys_id,
|
|
.get_ethtool_stats = e1000_get_ethtool_stats,
|
|
.get_ethtool_stats = e1000_get_ethtool_stats,
|
|
.get_sset_count = e1000_get_sset_count,
|
|
.get_sset_count = e1000_get_sset_count,
|
|
.get_coalesce = e1000_get_coalesce,
|
|
.get_coalesce = e1000_get_coalesce,
|