Lines Matching defs:msg
61 * @msg: The message buffer
67 static s32 e1000_read_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size)
79 ret_val = mbx->ops.read(hw, msg, size);
87 * @msg: The message buffer
93 static s32 e1000_write_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size)
102 /* send msg*/
103 ret_val = mbx->ops.write(hw, msg, size);
105 /* if msg sent wait until we receive an ack */
234 * @msg: The message buffer
239 static s32 e1000_write_mbx_vf(struct e1000_hw *hw, u32 *msg, u16 size)
251 /* flush any ack or msg as we are going to overwrite mailbox */
257 array_ew32(VMBMEM(0), i, msg[i]);
272 * @msg: The message buffer
277 static s32 e1000_read_mbx_vf(struct e1000_hw *hw, u32 *msg, u16 size)
291 msg[i] = array_er32(VMBMEM(0), i);