• Home
  • Raw
  • Download

Lines Matching refs:ret_val

88 	s32 ret_val = -IXGBE_ERR_MBX;  in ixgbevf_read_posted_mbx()  local
93 ret_val = ixgbevf_poll_for_msg(hw); in ixgbevf_read_posted_mbx()
96 if (!ret_val) in ixgbevf_read_posted_mbx()
97 ret_val = mbx->ops.read(hw, msg, size); in ixgbevf_read_posted_mbx()
99 return ret_val; in ixgbevf_read_posted_mbx()
114 s32 ret_val = -IXGBE_ERR_MBX; in ixgbevf_write_posted_mbx() local
121 ret_val = mbx->ops.write(hw, msg, size); in ixgbevf_write_posted_mbx()
124 if (!ret_val) in ixgbevf_write_posted_mbx()
125 ret_val = ixgbevf_poll_for_ack(hw); in ixgbevf_write_posted_mbx()
127 return ret_val; in ixgbevf_write_posted_mbx()
158 s32 ret_val = IXGBE_ERR_MBX; in ixgbevf_check_for_bit_vf() local
161 ret_val = 0; in ixgbevf_check_for_bit_vf()
165 return ret_val; in ixgbevf_check_for_bit_vf()
176 s32 ret_val = IXGBE_ERR_MBX; in ixgbevf_check_for_msg_vf() local
179 ret_val = 0; in ixgbevf_check_for_msg_vf()
183 return ret_val; in ixgbevf_check_for_msg_vf()
194 s32 ret_val = IXGBE_ERR_MBX; in ixgbevf_check_for_ack_vf() local
197 ret_val = 0; in ixgbevf_check_for_ack_vf()
201 return ret_val; in ixgbevf_check_for_ack_vf()
212 s32 ret_val = IXGBE_ERR_MBX; in ixgbevf_check_for_rst_vf() local
216 ret_val = 0; in ixgbevf_check_for_rst_vf()
220 return ret_val; in ixgbevf_check_for_rst_vf()
231 s32 ret_val = IXGBE_ERR_MBX; in ixgbevf_obtain_mbx_lock_vf() local
238 ret_val = 0; in ixgbevf_obtain_mbx_lock_vf()
240 return ret_val; in ixgbevf_obtain_mbx_lock_vf()
253 s32 ret_val; in ixgbevf_write_mbx_vf() local
257 ret_val = ixgbevf_obtain_mbx_lock_vf(hw); in ixgbevf_write_mbx_vf()
258 if (ret_val) in ixgbevf_write_mbx_vf()
276 return ret_val; in ixgbevf_write_mbx_vf()
289 s32 ret_val = 0; in ixgbevf_read_mbx_vf() local
293 ret_val = ixgbevf_obtain_mbx_lock_vf(hw); in ixgbevf_read_mbx_vf()
294 if (ret_val) in ixgbevf_read_mbx_vf()
308 return ret_val; in ixgbevf_read_mbx_vf()