Commit d2d43e5b authored by Emil Tantilov's avatar Emil Tantilov Committed by Jeff Kirsher

ixgbe: make ixgbe_led_on/off_t_x550em static

These functions are only used in ixgbe_x550.c.

Fixes a warning when compiling with -Wmissing-prototypes
Reported-by: default avatarKrishneil Singh <krishneil.k.singh@intel.com>
Signed-off-by: default avatarEmil Tantilov <emil.s.tantilov@intel.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 691e4121
...@@ -2125,7 +2125,7 @@ static s32 ixgbe_reset_phy_t_X550em(struct ixgbe_hw *hw) ...@@ -2125,7 +2125,7 @@ static s32 ixgbe_reset_phy_t_X550em(struct ixgbe_hw *hw)
* @hw: pointer to hardware structure * @hw: pointer to hardware structure
* @led_idx: led number to turn on * @led_idx: led number to turn on
**/ **/
s32 ixgbe_led_on_t_x550em(struct ixgbe_hw *hw, u32 led_idx) static s32 ixgbe_led_on_t_x550em(struct ixgbe_hw *hw, u32 led_idx)
{ {
u16 phy_data; u16 phy_data;
...@@ -2147,7 +2147,7 @@ s32 ixgbe_led_on_t_x550em(struct ixgbe_hw *hw, u32 led_idx) ...@@ -2147,7 +2147,7 @@ s32 ixgbe_led_on_t_x550em(struct ixgbe_hw *hw, u32 led_idx)
* @hw: pointer to hardware structure * @hw: pointer to hardware structure
* @led_idx: led number to turn off * @led_idx: led number to turn off
**/ **/
s32 ixgbe_led_off_t_x550em(struct ixgbe_hw *hw, u32 led_idx) static s32 ixgbe_led_off_t_x550em(struct ixgbe_hw *hw, u32 led_idx)
{ {
u16 phy_data; u16 phy_data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment