Lines Matching refs:ops
51 if (!mbx->ops.read) in ixgbe_read_mbx()
54 return mbx->ops.read(hw, msg, size, mbx_id); in ixgbe_read_mbx()
73 if (!mbx->ops.write) in ixgbe_write_mbx()
76 return mbx->ops.write(hw, msg, size, mbx_id); in ixgbe_write_mbx()
90 if (!mbx->ops.check_for_msg) in ixgbe_check_for_msg()
93 return mbx->ops.check_for_msg(hw, mbx_id); in ixgbe_check_for_msg()
107 if (!mbx->ops.check_for_ack) in ixgbe_check_for_ack()
110 return mbx->ops.check_for_ack(hw, mbx_id); in ixgbe_check_for_ack()
124 if (!mbx->ops.check_for_rst) in ixgbe_check_for_rst()
127 return mbx->ops.check_for_rst(hw, mbx_id); in ixgbe_check_for_rst()
142 if (!countdown || !mbx->ops.check_for_msg) in ixgbe_poll_for_msg()
145 while (mbx->ops.check_for_msg(hw, mbx_id)) { in ixgbe_poll_for_msg()
167 if (!countdown || !mbx->ops.check_for_ack) in ixgbe_poll_for_ack()
170 while (mbx->ops.check_for_ack(hw, mbx_id)) { in ixgbe_poll_for_ack()
196 if (!mbx->ops.read) in ixgbe_read_posted_mbx()
204 return mbx->ops.read(hw, msg, size, mbx_id); in ixgbe_read_posted_mbx()
224 if (!mbx->ops.write || !mbx->timeout) in ixgbe_write_posted_mbx()
228 ret_val = mbx->ops.write(hw, msg, size, mbx_id); in ixgbe_write_posted_mbx()