diff options
author | Bruce Allan <bruce.w.allan@intel.com> | 2011-04-15 20:34:40 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-04-27 05:05:53 -0400 |
commit | dbf80dcbd8ca0c50f343401fedd2d6200cb8097e (patch) | |
tree | e6804f597018b03055daca6087f03eaaa6f32a45 /drivers/net/e1000e/hw.h | |
parent | 2bd93d7af1581d40e3c4b25242472661cb7c637a (diff) |
e1000e: implement ethtool set_phys_id
Based on a patch from Stephen Hemminger <shemminger@vyatta.com>.
The new ethtool set_phys_id takes over controlling the LED for
identifying boards. This fixes the lockout during that period.
For this device lots of extra infrastructure can also be removed by
using set_phys_id.
v2: - return blink frequency for parts that do not support blink in h/w
- add blink_led function pointers for devices that do support blink
in h/w to cleanup the test for this functionality
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Cc: Stephen Hemminger <shemminger@vyatta.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/e1000e/hw.h')
-rw-r--r-- | drivers/net/e1000e/hw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/e1000e/hw.h b/drivers/net/e1000e/hw.h index 307e1ec22417..6c2fa8327f5c 100644 --- a/drivers/net/e1000e/hw.h +++ b/drivers/net/e1000e/hw.h | |||
@@ -756,6 +756,7 @@ struct e1000_host_mng_command_info { | |||
756 | /* Function pointers and static data for the MAC. */ | 756 | /* Function pointers and static data for the MAC. */ |
757 | struct e1000_mac_operations { | 757 | struct e1000_mac_operations { |
758 | s32 (*id_led_init)(struct e1000_hw *); | 758 | s32 (*id_led_init)(struct e1000_hw *); |
759 | s32 (*blink_led)(struct e1000_hw *); | ||
759 | bool (*check_mng_mode)(struct e1000_hw *); | 760 | bool (*check_mng_mode)(struct e1000_hw *); |
760 | s32 (*check_for_link)(struct e1000_hw *); | 761 | s32 (*check_for_link)(struct e1000_hw *); |
761 | s32 (*cleanup_led)(struct e1000_hw *); | 762 | s32 (*cleanup_led)(struct e1000_hw *); |