aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDon Skidmore <donald.c.skidmore@intel.com>2011-03-05 21:59:20 -0500
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2011-03-07 20:59:53 -0500
commit90827996c59135b73e54463dac38710d5ddf1d2a (patch)
tree65a61ec13cf746d0b0008d4fe34d0d0b284000d6 /drivers
parent0a915b95d67f3bf63121c04aeb4eaebb183feb58 (diff)
ixgbe: fix missing function pointer conversion
In the previous commit: commit 5e655105e3e19d746f9e95c514b014c11c3d1b6a Author: Don Skidmore <donald.c.skidmore@intel.com> Date: Fri Feb 25 01:58:04 2011 +0000 ixgbe: add function pointer for semaphore function there was one release of the semaphore function call which did not get converted to a function pointer. Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ixgbe/ixgbe_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_common.c b/drivers/net/ixgbe/ixgbe_common.c
index a7fb2e00f76..94a56217027 100644
--- a/drivers/net/ixgbe/ixgbe_common.c
+++ b/drivers/net/ixgbe/ixgbe_common.c
@@ -1075,7 +1075,7 @@ static void ixgbe_release_eeprom(struct ixgbe_hw *hw)
1075 eec &= ~IXGBE_EEC_REQ; 1075 eec &= ~IXGBE_EEC_REQ;
1076 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec); 1076 IXGBE_WRITE_REG(hw, IXGBE_EEC, eec);
1077 1077
1078 ixgbe_release_swfw_sync(hw, IXGBE_GSSR_EEP_SM); 1078 hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM);
1079 1079
1080 /* Delay before attempt to obtain semaphore again to allow FW access */ 1080 /* Delay before attempt to obtain semaphore again to allow FW access */
1081 msleep(hw->eeprom.semaphore_delay); 1081 msleep(hw->eeprom.semaphore_delay);