Lines Matching refs:ret_val
129 s32 ret_val = IXGBE_ERR_MBX; in ixgbevf_check_for_bit_vf() local
132 ret_val = 0; in ixgbevf_check_for_bit_vf()
134 return ret_val; in ixgbevf_check_for_bit_vf()
145 s32 ret_val = IXGBE_ERR_MBX; in ixgbevf_check_for_msg_vf() local
148 ret_val = 0; in ixgbevf_check_for_msg_vf()
152 return ret_val; in ixgbevf_check_for_msg_vf()
163 s32 ret_val = IXGBE_ERR_MBX; in ixgbevf_check_for_ack_vf() local
166 ret_val = 0; in ixgbevf_check_for_ack_vf()
171 return ret_val; in ixgbevf_check_for_ack_vf()
182 s32 ret_val = IXGBE_ERR_MBX; in ixgbevf_check_for_rst_vf() local
186 ret_val = 0; in ixgbevf_check_for_rst_vf()
191 return ret_val; in ixgbevf_check_for_rst_vf()
203 s32 ret_val = IXGBE_ERR_CONFIG; in ixgbevf_obtain_mbx_lock_vf() local
208 return ret_val; in ixgbevf_obtain_mbx_lock_vf()
218 ret_val = 0; in ixgbevf_obtain_mbx_lock_vf()
226 if (ret_val) in ixgbevf_obtain_mbx_lock_vf()
227 ret_val = IXGBE_ERR_TIMEOUT; in ixgbevf_obtain_mbx_lock_vf()
229 return ret_val; in ixgbevf_obtain_mbx_lock_vf()
265 s32 ret_val; in ixgbevf_write_mbx_vf() local
269 ret_val = ixgbevf_obtain_mbx_lock_vf(hw); in ixgbevf_write_mbx_vf()
270 if (ret_val) in ixgbevf_write_mbx_vf()
290 ret_val = ixgbevf_poll_for_ack(hw); in ixgbevf_write_mbx_vf()
295 return ret_val; in ixgbevf_write_mbx_vf()
308 s32 ret_val; in ixgbevf_write_mbx_vf_legacy() local
312 ret_val = ixgbevf_obtain_mbx_lock_vf(hw); in ixgbevf_write_mbx_vf_legacy()
313 if (ret_val) in ixgbevf_write_mbx_vf_legacy()
333 return ret_val; in ixgbevf_write_mbx_vf_legacy()
347 s32 ret_val; in ixgbevf_read_mbx_vf() local
351 ret_val = ixgbevf_check_for_msg_vf(hw); in ixgbevf_read_mbx_vf()
352 if (ret_val) in ixgbevf_read_mbx_vf()
353 return ret_val; in ixgbevf_read_mbx_vf()
369 return ret_val; in ixgbevf_read_mbx_vf()
382 s32 ret_val = 0; in ixgbevf_read_mbx_vf_legacy() local
386 ret_val = ixgbevf_obtain_mbx_lock_vf(hw); in ixgbevf_read_mbx_vf_legacy()
387 if (ret_val) in ixgbevf_read_mbx_vf_legacy()
401 return ret_val; in ixgbevf_read_mbx_vf_legacy()
442 s32 ret_val = IXGBE_ERR_CONFIG; in ixgbevf_poll_mbx() local
445 return ret_val; in ixgbevf_poll_mbx()
451 ret_val = ixgbevf_poll_for_msg(hw); in ixgbevf_poll_mbx()
453 if (!ret_val) in ixgbevf_poll_mbx()
454 ret_val = mbx->ops.read(hw, msg, size); in ixgbevf_poll_mbx()
456 return ret_val; in ixgbevf_poll_mbx()
471 s32 ret_val = IXGBE_ERR_CONFIG; in ixgbevf_write_mbx() local
479 return ret_val; in ixgbevf_write_mbx()
482 ret_val = IXGBE_ERR_PARAM; in ixgbevf_write_mbx()
484 ret_val = mbx->ops.write(hw, msg, size); in ixgbevf_write_mbx()
486 return ret_val; in ixgbevf_write_mbx()