Lines Matching refs:ep_out_buf
126 kfree(cardp->ep_out_buf); in if_usb_free()
127 cardp->ep_out_buf = NULL; in if_usb_free()
255 cardp->ep_out_buf = kmalloc(MRVDRV_ETH_TX_PACKET_BUFFER_SIZE, GFP_KERNEL); in if_usb_probe()
256 if (!cardp->ep_out_buf) { in if_usb_probe()
333 struct fwdata *fwdata = cardp->ep_out_buf; in if_usb_send_fw_pkt()
365 usb_tx_block(cardp, cardp->ep_out_buf, sizeof(struct fwdata) + in if_usb_send_fw_pkt()
387 struct cmd_header *cmd = cardp->ep_out_buf + 4; in if_usb_reset_device()
392 *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST); in if_usb_reset_device()
398 usb_tx_block(cardp, cardp->ep_out_buf, 4 + sizeof(struct cmd_header)); in if_usb_reset_device()
747 *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST); in if_usb_host_to_card()
750 *(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_DATA); in if_usb_host_to_card()
754 memcpy((cardp->ep_out_buf + MESSAGE_HEADER_LEN), payload, nb); in if_usb_host_to_card()
756 return usb_tx_block(cardp, cardp->ep_out_buf, nb + MESSAGE_HEADER_LEN); in if_usb_host_to_card()
768 struct bootcmd *bootcmd = cardp->ep_out_buf; in if_usb_issue_boot_command()
776 usb_tx_block(cardp, cardp->ep_out_buf, sizeof(*bootcmd)); in if_usb_issue_boot_command()