* ixgbe_acquire_swfw_semaphore - Acquire SWFW semaphore * @hw: pointer to hardware structure * @mask: Mask to specify which semaphore to acquire * * Acquires the SWFW semaphore through SW_FW_SYNC register for the specified * function (CSR, PHY0, PHY1, EEPROM, Flash) **/
| 1627 | * function (CSR, PHY0, PHY1, EEPROM, Flash) |
| 1628 | **/ |
| 1629 | s32 ixgbe_acquire_swfw_semaphore(struct ixgbe_hw *hw, u32 mask) |
| 1630 | { |
| 1631 | return ixgbe_call_func(hw, hw->mac.ops.acquire_swfw_sync, |
| 1632 | (hw, mask), IXGBE_NOT_IMPLEMENTED); |
| 1633 | } |
| 1634 | |
| 1635 | /** |
| 1636 | * ixgbe_release_swfw_semaphore - Release SWFW semaphore |
no outgoing calls
no test coverage detected