Lines Matching defs:msg
56 * @msg: The message buffer
62 static s32 ixgbevf_read_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size)
74 ret_val = mbx->ops.read(hw, msg, size);
82 * @msg: The message buffer
88 static s32 ixgbevf_write_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size)
97 /* send msg */
98 ret_val = mbx->ops.write(hw, msg, size);
100 /* if msg sent wait until we receive an ack */
223 * @msg: The message buffer
228 static s32 ixgbevf_write_mbx_vf(struct ixgbe_hw *hw, u32 *msg, u16 size)
238 /* flush msg and acks as we are overwriting the message buffer */
244 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_VFMBMEM, i, msg[i]);
259 * @msg: The message buffer
264 static s32 ixgbevf_read_mbx_vf(struct ixgbe_hw *hw, u32 *msg, u16 size)
276 msg[i] = IXGBE_READ_REG_ARRAY(hw, IXGBE_VFMBMEM, i);