diff options
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_82598.c')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_82598.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ixgbe/ixgbe_82598.c b/drivers/net/ixgbe/ixgbe_82598.c index 1c227b0777a6..916430f2a7e7 100644 --- a/drivers/net/ixgbe/ixgbe_82598.c +++ b/drivers/net/ixgbe/ixgbe_82598.c | |||
@@ -59,7 +59,7 @@ static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset, | |||
59 | * increase the value to either 10ms to 250ms for capability version 1 config, | 59 | * increase the value to either 10ms to 250ms for capability version 1 config, |
60 | * or 16ms to 55ms for version 2. | 60 | * or 16ms to 55ms for version 2. |
61 | **/ | 61 | **/ |
62 | void ixgbe_set_pcie_completion_timeout(struct ixgbe_hw *hw) | 62 | static void ixgbe_set_pcie_completion_timeout(struct ixgbe_hw *hw) |
63 | { | 63 | { |
64 | struct ixgbe_adapter *adapter = hw->back; | 64 | struct ixgbe_adapter *adapter = hw->back; |
65 | u32 gcr = IXGBE_READ_REG(hw, IXGBE_GCR); | 65 | u32 gcr = IXGBE_READ_REG(hw, IXGBE_GCR); |
@@ -143,7 +143,7 @@ static s32 ixgbe_get_invariants_82598(struct ixgbe_hw *hw) | |||
143 | * not known. Perform the SFP init if necessary. | 143 | * not known. Perform the SFP init if necessary. |
144 | * | 144 | * |
145 | **/ | 145 | **/ |
146 | s32 ixgbe_init_phy_ops_82598(struct ixgbe_hw *hw) | 146 | static s32 ixgbe_init_phy_ops_82598(struct ixgbe_hw *hw) |
147 | { | 147 | { |
148 | struct ixgbe_mac_info *mac = &hw->mac; | 148 | struct ixgbe_mac_info *mac = &hw->mac; |
149 | struct ixgbe_phy_info *phy = &hw->phy; | 149 | struct ixgbe_phy_info *phy = &hw->phy; |
@@ -204,7 +204,7 @@ out: | |||
204 | * Starts the hardware using the generic start_hw function. | 204 | * Starts the hardware using the generic start_hw function. |
205 | * Then set pcie completion timeout | 205 | * Then set pcie completion timeout |
206 | **/ | 206 | **/ |
207 | s32 ixgbe_start_hw_82598(struct ixgbe_hw *hw) | 207 | static s32 ixgbe_start_hw_82598(struct ixgbe_hw *hw) |
208 | { | 208 | { |
209 | s32 ret_val = 0; | 209 | s32 ret_val = 0; |
210 | 210 | ||