Lines Matching refs:ops
40 if (!mbx->ops.check_for_msg) in e1000_poll_for_msg()
43 while (countdown && mbx->ops.check_for_msg(hw)) { in e1000_poll_for_msg()
66 if (!mbx->ops.check_for_ack) in e1000_poll_for_ack()
69 while (countdown && mbx->ops.check_for_ack(hw)) { in e1000_poll_for_ack()
95 if (!mbx->ops.read) in e1000_read_posted_mbx()
102 ret_val = mbx->ops.read(hw, msg, size); in e1000_read_posted_mbx()
122 if (!mbx->ops.write || !mbx->timeout) in e1000_write_posted_mbx()
126 ret_val = mbx->ops.write(hw, msg, size); in e1000_write_posted_mbx()
334 mbx->ops.read = e1000_read_mbx_vf; in e1000_init_mbx_params_vf()
335 mbx->ops.write = e1000_write_mbx_vf; in e1000_init_mbx_params_vf()
336 mbx->ops.read_posted = e1000_read_posted_mbx; in e1000_init_mbx_params_vf()
337 mbx->ops.write_posted = e1000_write_posted_mbx; in e1000_init_mbx_params_vf()
338 mbx->ops.check_for_msg = e1000_check_for_msg_vf; in e1000_init_mbx_params_vf()
339 mbx->ops.check_for_ack = e1000_check_for_ack_vf; in e1000_init_mbx_params_vf()
340 mbx->ops.check_for_rst = e1000_check_for_rst_vf; in e1000_init_mbx_params_vf()