diff options
author | John Fastabend <john.r.fastabend@intel.com> | 2011-04-12 04:44:55 +0200 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-04-27 11:16:48 +0200 |
commit | b32c8dcc33a74fb4f1e73ed2263504f5947ca76b (patch) | |
tree | 8b2697a3ac2e855225a437d9491b1dd9541d6a7a /drivers/net/ixgbe/ixgbe_82599.c | |
parent | ixgbe: remove ntuple display support (diff) | |
download | linux-b32c8dcc33a74fb4f1e73ed2263504f5947ca76b.tar.xz linux-b32c8dcc33a74fb4f1e73ed2263504f5947ca76b.zip |
ixgbe: fix static functions
Define functions as static added C=1 (sparse) to my make line
brought these to my attention.
Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_82599.c')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_82599.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_82599.c b/drivers/net/ixgbe/ixgbe_82599.c index d521baf1acd3..d1cda36507f8 100644 --- a/drivers/net/ixgbe/ixgbe_82599.c +++ b/drivers/net/ixgbe/ixgbe_82599.c @@ -494,7 +494,7 @@ static void ixgbe_flap_tx_laser_multispeed_fiber(struct ixgbe_hw *hw) * * Set the link speed in the AUTOC register and restarts link. **/ -s32 ixgbe_setup_mac_link_multispeed_fiber(struct ixgbe_hw *hw, +static s32 ixgbe_setup_mac_link_multispeed_fiber(struct ixgbe_hw *hw, ixgbe_link_speed speed, bool autoneg, bool autoneg_wait_to_complete) |