Lines Matching refs:ops

83 	if (mbx->ops.read)  in e1000_read_mbx()
84 ret_val = mbx->ops.read(hw, msg, size, mbx_id); in e1000_read_mbx()
108 else if (mbx->ops.write) in e1000_write_mbx()
109 ret_val = mbx->ops.write(hw, msg, size, mbx_id); in e1000_write_mbx()
128 if (mbx->ops.check_for_msg) in e1000_check_for_msg()
129 ret_val = mbx->ops.check_for_msg(hw, mbx_id); in e1000_check_for_msg()
148 if (mbx->ops.check_for_ack) in e1000_check_for_ack()
149 ret_val = mbx->ops.check_for_ack(hw, mbx_id); in e1000_check_for_ack()
168 if (mbx->ops.check_for_rst) in e1000_check_for_rst()
169 ret_val = mbx->ops.check_for_rst(hw, mbx_id); in e1000_check_for_rst()
188 if (!countdown || !mbx->ops.check_for_msg) in e1000_poll_for_msg()
191 while (countdown && mbx->ops.check_for_msg(hw, mbx_id)) { in e1000_poll_for_msg()
219 if (!countdown || !mbx->ops.check_for_ack) in e1000_poll_for_ack()
222 while (countdown && mbx->ops.check_for_ack(hw, mbx_id)) { in e1000_poll_for_ack()
253 if (!mbx->ops.read) in e1000_read_posted_mbx()
260 ret_val = mbx->ops.read(hw, msg, size, mbx_id); in e1000_read_posted_mbx()
283 if (!mbx->ops.write || !mbx->timeout) in e1000_write_posted_mbx()
287 ret_val = mbx->ops.write(hw, msg, size, mbx_id); in e1000_write_posted_mbx()
305 mbx->ops.init_params = e1000_null_ops_generic; in e1000_init_mbx_ops_generic()
306 mbx->ops.read = e1000_null_mbx_transact; in e1000_init_mbx_ops_generic()
307 mbx->ops.write = e1000_null_mbx_transact; in e1000_init_mbx_ops_generic()
308 mbx->ops.check_for_msg = e1000_null_mbx_check_for_flag; in e1000_init_mbx_ops_generic()
309 mbx->ops.check_for_ack = e1000_null_mbx_check_for_flag; in e1000_init_mbx_ops_generic()
310 mbx->ops.check_for_rst = e1000_null_mbx_check_for_flag; in e1000_init_mbx_ops_generic()
311 mbx->ops.read_posted = e1000_read_posted_mbx; in e1000_init_mbx_ops_generic()
312 mbx->ops.write_posted = e1000_write_posted_mbx; in e1000_init_mbx_ops_generic()
542 mbx->ops.read = e1000_read_mbx_vf; in e1000_init_mbx_params_vf()
543 mbx->ops.write = e1000_write_mbx_vf; in e1000_init_mbx_params_vf()
544 mbx->ops.read_posted = e1000_read_posted_mbx; in e1000_init_mbx_params_vf()
545 mbx->ops.write_posted = e1000_write_posted_mbx; in e1000_init_mbx_params_vf()
546 mbx->ops.check_for_msg = e1000_check_for_msg_vf; in e1000_init_mbx_params_vf()
547 mbx->ops.check_for_ack = e1000_check_for_ack_vf; in e1000_init_mbx_params_vf()
548 mbx->ops.check_for_rst = e1000_check_for_rst_vf; in e1000_init_mbx_params_vf()
768 mbx->ops.read = e1000_read_mbx_pf; in e1000_init_mbx_params_pf()
769 mbx->ops.write = e1000_write_mbx_pf; in e1000_init_mbx_params_pf()
770 mbx->ops.read_posted = e1000_read_posted_mbx; in e1000_init_mbx_params_pf()
771 mbx->ops.write_posted = e1000_write_posted_mbx; in e1000_init_mbx_params_pf()
772 mbx->ops.check_for_msg = e1000_check_for_msg_pf; in e1000_init_mbx_params_pf()
773 mbx->ops.check_for_ack = e1000_check_for_ack_pf; in e1000_init_mbx_params_pf()
774 mbx->ops.check_for_rst = e1000_check_for_rst_pf; in e1000_init_mbx_params_pf()