* ixgbe_release_swfw_semaphore - Release SWFW semaphore * @hw: pointer to hardware structure * @mask: Mask to specify which semaphore to release * * Releases the SWFW semaphore through SW_FW_SYNC register for the specified * function (CSR, PHY0, PHY1, EEPROM, Flash) **/
| 1641 | * function (CSR, PHY0, PHY1, EEPROM, Flash) |
| 1642 | **/ |
| 1643 | void ixgbe_release_swfw_semaphore(struct ixgbe_hw *hw, u32 mask) |
| 1644 | { |
| 1645 | if (hw->mac.ops.release_swfw_sync) |
| 1646 | hw->mac.ops.release_swfw_sync(hw, mask); |
| 1647 | } |
| 1648 | |
| 1649 | /** |
| 1650 | * ixgbe_init_swfw_semaphore - Clean up SWFW semaphore |
no outgoing calls
no test coverage detected