diff options
author | Hannes Eder <hannes@hanneseder.net> | 2009-02-14 06:38:36 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-17 20:37:58 -0500 |
commit | 1aef47c411f4b4b6bb9c8ebcdb703d3a20de1551 (patch) | |
tree | 2bacd88cb70b73d8278462362cb69136e40ca9a3 /drivers/net/ixgbe | |
parent | 886a63e865eb346ab20572e802fc3118cb9aee14 (diff) |
drivers/net/ixgbe: fix sparse warning: Should it be static?
Impact: Make symbol static.
Fix this sparse warning:
drivers/net/ixgbe/ixgbe_82598.c:59:5: warning: symbol 'ixgbe_get_pcie_msix_count_82598' was not declared. Should it be static?
Signed-off-by: Hannes Eder <hannes@hanneseder.net>
Acked-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_82598.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_82598.c b/drivers/net/ixgbe/ixgbe_82598.c index 525bd87fea56..51dba1c78e1e 100644 --- a/drivers/net/ixgbe/ixgbe_82598.c +++ b/drivers/net/ixgbe/ixgbe_82598.c | |||
@@ -56,7 +56,7 @@ static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset, | |||
56 | * Read PCIe configuration space, and get the MSI-X vector count from | 56 | * Read PCIe configuration space, and get the MSI-X vector count from |
57 | * the capabilities table. | 57 | * the capabilities table. |
58 | **/ | 58 | **/ |
59 | u16 ixgbe_get_pcie_msix_count_82598(struct ixgbe_hw *hw) | 59 | static u16 ixgbe_get_pcie_msix_count_82598(struct ixgbe_hw *hw) |
60 | { | 60 | { |
61 | struct ixgbe_adapter *adapter = hw->back; | 61 | struct ixgbe_adapter *adapter = hw->back; |
62 | u16 msix_count; | 62 | u16 msix_count; |