* ixgbe_check_for_msg - checks to see if someone sent us mail * @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 **/
| 65 | * returns SUCCESS if the Status bit was found or else ERR_MBX |
| 66 | **/ |
| 67 | s32 ixgbe_check_for_msg(struct ixgbe_hw *hw, u16 mbx_id) |
| 68 | { |
| 69 | struct ixgbe_mbx_info *mbx = &hw->mbx; |
| 70 | s32 ret_val = IXGBE_ERR_MBX; |
| 71 | |
| 72 | DEBUGFUNC("ixgbe_check_for_msg"); |
| 73 | |
| 74 | if (mbx->ops.check_for_msg) |
| 75 | ret_val = mbx->ops.check_for_msg(hw, mbx_id); |
| 76 | |
| 77 | return ret_val; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * ixgbe_check_for_ack - checks to see if someone sent us ACK |
no outgoing calls
no test coverage detected