* ixgbe_check_for_ack - checks to see if someone sent us ACK * @hw: pointer to the HW structure * @mbx_id: id of mailbox to check * * returns SUCCESS if the Status bit was found or else ERR_MBX **/
| 85 | * returns SUCCESS if the Status bit was found or else ERR_MBX |
| 86 | **/ |
| 87 | s32 ixgbe_check_for_ack(struct ixgbe_hw *hw, u16 mbx_id) |
| 88 | { |
| 89 | struct ixgbe_mbx_info *mbx = &hw->mbx; |
| 90 | s32 ret_val = IXGBE_ERR_MBX; |
| 91 | |
| 92 | DEBUGFUNC("ixgbe_check_for_ack"); |
| 93 | |
| 94 | if (mbx->ops.check_for_ack) |
| 95 | ret_val = mbx->ops.check_for_ack(hw, mbx_id); |
| 96 | |
| 97 | return ret_val; |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * ixgbe_check_for_rst - checks to see if other side has reset |
no outgoing calls
no test coverage detected