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()
536 mbx->ops.read = e1000_read_mbx_vf; in e1000_init_mbx_params_vf()
537 mbx->ops.write = e1000_write_mbx_vf; in e1000_init_mbx_params_vf()
538 mbx->ops.read_posted = e1000_read_posted_mbx; in e1000_init_mbx_params_vf()
539 mbx->ops.write_posted = e1000_write_posted_mbx; in e1000_init_mbx_params_vf()
540 mbx->ops.check_for_msg = e1000_check_for_msg_vf; in e1000_init_mbx_params_vf()
541 mbx->ops.check_for_ack = e1000_check_for_ack_vf; in e1000_init_mbx_params_vf()
542 mbx->ops.check_for_rst = e1000_check_for_rst_vf; in e1000_init_mbx_params_vf()
754 mbx->ops.read = e1000_read_mbx_pf; in e1000_init_mbx_params_pf()
755 mbx->ops.write = e1000_write_mbx_pf; in e1000_init_mbx_params_pf()
756 mbx->ops.read_posted = e1000_read_posted_mbx; in e1000_init_mbx_params_pf()
757 mbx->ops.write_posted = e1000_write_posted_mbx; in e1000_init_mbx_params_pf()
758 mbx->ops.check_for_msg = e1000_check_for_msg_pf; in e1000_init_mbx_params_pf()
759 mbx->ops.check_for_ack = e1000_check_for_ack_pf; in e1000_init_mbx_params_pf()
760 mbx->ops.check_for_rst = e1000_check_for_rst_pf; in e1000_init_mbx_params_pf()