/drivers/usb/storage/ |
D | protocol.c | 54 for (; srb->cmd_len < 12; srb->cmd_len++) in usb_stor_pad12_command() 55 srb->cmnd[srb->cmd_len] = 0; in usb_stor_pad12_command() 72 for (; srb->cmd_len < 12; srb->cmd_len++) in usb_stor_ufi_command() 73 srb->cmnd[srb->cmd_len] = 0; in usb_stor_ufi_command() 76 srb->cmd_len = 12; in usb_stor_ufi_command()
|
D | cypress_atacb.c | 99 srb->cmd_len = 16; in cypress_atacb_passthrough() 179 srb->cmd_len = 16; in cypress_atacb_passthrough() 236 srb->cmd_len = 12; in cypress_atacb_passthrough()
|
/drivers/mtd/devices/ |
D | mchp23k256.c | 67 int ret, cmd_len; in mchp23k256_write() local 71 cmd_len = mchp23k256_cmdsz(flash); in mchp23k256_write() 77 transfer[0].len = cmd_len; in mchp23k256_write() 93 if (retlen && message.actual_length > cmd_len) in mchp23k256_write() 94 *retlen += message.actual_length - cmd_len; in mchp23k256_write() 106 int ret, cmd_len; in mchp23k256_read() local 110 cmd_len = mchp23k256_cmdsz(flash); in mchp23k256_read() 117 transfer[0].len = cmd_len; in mchp23k256_read() 133 if (retlen && message.actual_length > cmd_len) in mchp23k256_read() 134 *retlen += message.actual_length - cmd_len; in mchp23k256_read()
|
/drivers/net/wireless/microchip/wilc1000/ |
D | spi.c | 424 int cmd_len, resp_len, i; in wilc_spi_single_read() local 449 cmd_len = offsetof(struct wilc_spi_cmd, u.simple_cmd.crc); in wilc_spi_single_read() 453 c->u.simple_cmd.crc[0] = wilc_get_crc7(wb, cmd_len); in wilc_spi_single_read() 454 cmd_len += 1; in wilc_spi_single_read() 458 if (cmd_len + resp_len > ARRAY_SIZE(wb)) { in wilc_spi_single_read() 461 cmd_len, resp_len, ARRAY_SIZE(wb)); in wilc_spi_single_read() 465 if (wilc_spi_tx_rx(wilc, wb, rb, cmd_len + resp_len)) { in wilc_spi_single_read() 470 r = (struct wilc_spi_rsp_data *)&rb[cmd_len]; in wilc_spi_single_read() 519 int cmd_len, resp_len; in wilc_spi_write_cmd() local 534 cmd_len = offsetof(struct wilc_spi_cmd, u.internal_w_cmd.crc); in wilc_spi_write_cmd() [all …]
|
/drivers/acpi/acpica/ |
D | dbhistry.c | 45 u16 cmd_len; in acpi_db_add_to_history() local 50 cmd_len = (u16)strlen(command_line); in acpi_db_add_to_history() 51 if (!cmd_len) { in acpi_db_add_to_history() 62 if (cmd_len > buffer_len) { in acpi_db_add_to_history() 66 command = acpi_os_allocate(cmd_len + 1); in acpi_db_add_to_history() 70 acpi_os_allocate(cmd_len + 1); in acpi_db_add_to_history()
|
/drivers/net/can/usb/kvaser_usb/ |
D | kvaser_usb_hydra.c | 238 u8 cmd_len; member 548 size_t cmd_len; in kvaser_usb_hydra_send_simple_cmd() local 556 cmd_len = kvaser_usb_hydra_cmd_size(cmd); in kvaser_usb_hydra_send_simple_cmd() 573 err = kvaser_usb_send_cmd(dev, cmd, cmd_len); in kvaser_usb_hydra_send_simple_cmd() 589 size_t cmd_len; in kvaser_usb_hydra_send_simple_cmd_async() local 597 cmd_len = kvaser_usb_hydra_cmd_size(cmd); in kvaser_usb_hydra_send_simple_cmd_async() 604 err = kvaser_usb_send_cmd_async(priv, cmd, cmd_len); in kvaser_usb_hydra_send_simple_cmd_async() 643 size_t cmd_len; in kvaser_usb_hydra_wait_cmd() local 646 cmd_len = kvaser_usb_hydra_cmd_size(tmp_cmd); in kvaser_usb_hydra_wait_cmd() 647 if (pos + cmd_len > actual_len) { in kvaser_usb_hydra_wait_cmd() [all …]
|
/drivers/fsi/ |
D | fsi-occ.c | 244 size_t cmd_len, resp_len, resp_data_len; in occ_getsram() local 255 cmd_len = 5; in occ_getsram() 261 cmd_len = 6; in occ_getsram() 268 cmd[0] = cpu_to_be32(cmd_len); in occ_getsram() 277 rc = sbefifo_submit(occ->sbefifo, cmd, cmd_len, resp, &resp_len); in occ_getsram() 310 size_t cmd_len, buf_len, resp_len, resp_data_len; in occ_putsram() local 316 cmd_len = (occ->version == occ_p10) ? 6 : 5; in occ_putsram() 323 cmd_len += data_len >> 2; in occ_putsram() 324 buf_len = max(cmd_len, resp_len); in occ_putsram() 333 buf[0] = cpu_to_be32(cmd_len); in occ_putsram() [all …]
|
D | fsi-sbefifo.c | 476 const __be32 *command, size_t cmd_len) in sbefifo_send_command() argument 479 size_t len, chunk, vacant = 0, remaining = cmd_len; in sbefifo_send_command() 485 cmd_len, be32_to_cpu(command[1])); in sbefifo_send_command() 613 const __be32 *command, size_t cmd_len, in sbefifo_do_command() argument 617 int rc = sbefifo_send_command(sbefifo, command, cmd_len); in sbefifo_do_command() 667 const __be32 *command, size_t cmd_len, in __sbefifo_submit() argument 676 if (cmd_len < 2 || be32_to_cpu(command[0]) != cmd_len) { in __sbefifo_submit() 678 cmd_len, be32_to_cpu(command[0])); in __sbefifo_submit() 691 rc = sbefifo_do_command(sbefifo, command, cmd_len, response); in __sbefifo_submit() 717 int sbefifo_submit(struct device *dev, const __be32 *command, size_t cmd_len, in sbefifo_submit() argument [all …]
|
/drivers/gpu/drm/i915/gvt/ |
D | trace.h | 230 u32 cmd_len, u32 buf_type, u32 buf_addr_type, 233 TP_ARGS(vgpu_id, ring_id, ip_gma, cmd_va, cmd_len, buf_type, 242 __field(u32, cmd_len) 244 __dynamic_array(u32, raw_cmd, cmd_len) 254 __entry->cmd_len = cmd_len; 257 memcpy(__get_dynamic_array(raw_cmd), cmd_va, cmd_len * sizeof(*cmd_va)); 268 __entry->cmd_len, 270 __entry->cmd_len, 4),
|
/drivers/staging/r8188eu/core/ |
D | rtw_iol.c | 42 int rtw_IOL_append_cmds(struct xmit_frame *xmit_frame, u8 *IOL_cmds, u32 cmd_len) in rtw_IOL_append_cmds() argument 52 if (ori_len + cmd_len + 8 > MAX_XMITBUF_SZ) { in rtw_IOL_append_cmds() 54 __func__, ori_len + cmd_len + 8, MAX_XMITBUF_SZ); in rtw_IOL_append_cmds() 58 memcpy(xmit_frame->buf_addr + buf_offset + pattrib->pktlen, IOL_cmds, cmd_len); in rtw_IOL_append_cmds() 59 pattrib->pktlen += cmd_len; in rtw_IOL_append_cmds() 60 pattrib->last_txcmdsz += cmd_len; in rtw_IOL_append_cmds()
|
/drivers/media/usb/gspca/ |
D | kinect.c | 121 unsigned int cmd_len, void *replybuf, unsigned int reply_len) in send_cmd() argument 131 if (cmd_len & 1 || cmd_len > (0x400 - sizeof(*chdr))) { in send_cmd() 132 pr_err("send_cmd: Invalid command length (0x%x)\n", cmd_len); in send_cmd() 140 chdr->len = cpu_to_le16(cmd_len / 2); in send_cmd() 142 memcpy(obuf+sizeof(*chdr), cmdbuf, cmd_len); in send_cmd() 144 res = kinect_write(udev, obuf, cmd_len + sizeof(*chdr)); in send_cmd() 147 sd->cam_tag, cmd_len, res); in send_cmd()
|
/drivers/firmware/ |
D | qcom_scm-legacy.c | 141 const size_t cmd_len = arglen * sizeof(__le32); in scm_legacy_call() local 143 size_t alloc_len = sizeof(*cmd) + cmd_len + sizeof(*rsp) + resp_len; in scm_legacy_call() 154 cmd->resp_hdr_offset = cpu_to_le32(sizeof(*cmd) + cmd_len); in scm_legacy_call() 182 dma_sync_single_for_cpu(dev, cmd_phys + sizeof(*cmd) + cmd_len, in scm_legacy_call() 186 dma_sync_single_for_cpu(dev, cmd_phys + sizeof(*cmd) + cmd_len + in scm_legacy_call()
|
/drivers/scsi/ |
D | scsi_bsg.c | 36 sreq->cmd_len = hdr->request_len; in scsi_bsg_sg_io_fn() 37 if (sreq->cmd_len > BLK_MAX_CDB) { in scsi_bsg_sg_io_fn() 38 sreq->cmd = kzalloc(sreq->cmd_len, GFP_KERNEL); in scsi_bsg_sg_io_fn() 44 if (copy_from_user(sreq->cmd, uptr64(hdr->request), sreq->cmd_len)) in scsi_bsg_sg_io_fn()
|
D | scsi_ioctl.c | 350 if (hdr->cmd_len < 6) in scsi_fill_sghdr_rq() 352 if (copy_from_user(req->cmd, hdr->cmdp, hdr->cmd_len)) in scsi_fill_sghdr_rq() 360 req->cmd_len = hdr->cmd_len; in scsi_fill_sghdr_rq() 449 if (hdr->cmd_len > BLK_MAX_CDB) { in sg_io() 450 req->cmd = kzalloc(hdr->cmd_len, GFP_KERNEL); in sg_io() 579 req->cmd_len = cmdlen; in sg_scsi_ioctl() 654 .cmd_len = hdr->cmd_len, in put_sg_io_hdr() 702 .cmd_len = hdr32.cmd_len, in get_sg_io_hdr() 823 hdr.cmd_len = sizeof(cgc.cmd); in scsi_cdrom_send_packet() 848 hdr.cmd_len = sizeof(cgc.cmd); in scsi_cdrom_send_packet()
|
/drivers/net/wireless/realtek/rtlwifi/rtl8723be/ |
D | fw.c | 27 u32 cmd_len, u8 *p_cmdbuffer) in _rtl8723be_fill_h2c_command() argument 140 switch (cmd_len) { in _rtl8723be_fill_h2c_command() 146 p_cmdbuffer + buf_index, cmd_len); in _rtl8723be_fill_h2c_command() 159 p_cmdbuffer + buf_index+3, cmd_len-3); in _rtl8723be_fill_h2c_command() 175 cmd_len); in _rtl8723be_fill_h2c_command() 198 u32 cmd_len, u8 *p_cmdbuffer) in rtl8723be_fill_h2c_cmd() argument 210 memcpy(tmp_cmdbuf, p_cmdbuffer, cmd_len); in rtl8723be_fill_h2c_cmd() 211 _rtl8723be_fill_h2c_command(hw, element_id, cmd_len, in rtl8723be_fill_h2c_cmd()
|
/drivers/nfc/st95hf/ |
D | core.c | 88 int cmd_len; member 122 .cmd_len = 0x2, 128 .cmd_len = 0x7, 135 .cmd_len = 0x7, 142 .cmd_len = 0x7, 149 .cmd_len = 0x7, 156 .cmd_len = 0x7, 163 .cmd_len = 0x6, 170 .cmd_len = 0x5, 177 .cmd_len = 0x5, [all …]
|
/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
D | fw.c | 164 u32 cmd_len, u8 *cmdbuffer) in _rtl92ee_fill_h2c_command() argument 298 switch (cmd_len) { in _rtl92ee_fill_h2c_command() 304 cmdbuffer + buf_index, cmd_len); in _rtl92ee_fill_h2c_command() 317 cmdbuffer + buf_index+3, cmd_len-3); in _rtl92ee_fill_h2c_command() 333 "switch case %#x not processed\n", cmd_len); in _rtl92ee_fill_h2c_command() 356 u8 element_id, u32 cmd_len, u8 *cmdbuffer) in rtl92ee_fill_h2c_cmd() argument 368 memcpy(tmp_cmdbuf, cmdbuffer, cmd_len); in rtl92ee_fill_h2c_cmd() 369 _rtl92ee_fill_h2c_command(hw, element_id, cmd_len, (u8 *)&tmp_cmdbuf); in rtl92ee_fill_h2c_cmd() 857 u8 *cmd_buf, u8 cmd_len) in rtl92ee_c2h_ra_report_handler() argument
|
/drivers/net/wireless/realtek/rtlwifi/rtl8192se/ |
D | fw.c | 507 u32 cmd_len = 0; in _rtl92s_firmware_set_h2c_cmd() local 513 cmd_len = sizeof(struct h2c_set_pwrmode_parm); in _rtl92s_firmware_set_h2c_cmd() 517 cmd_len = sizeof(struct h2c_joinbss_rpt_parm); in _rtl92s_firmware_set_h2c_cmd() 521 cmd_len = sizeof(struct h2c_wpa_two_way_parm); in _rtl92s_firmware_set_h2c_cmd() 525 cmd_len = sizeof(unsigned long long); in _rtl92s_firmware_set_h2c_cmd() 529 cmd_len = sizeof(u8); in _rtl92s_firmware_set_h2c_cmd() 535 len = _rtl92s_get_h2c_cmdlen(MAX_TRANSMIT_BUFFER_SIZE, 1, &cmd_len); in _rtl92s_firmware_set_h2c_cmd() 545 &cmd_len, &pcmd_buffer, &rtlhal->h2c_txcmd_seq); in _rtl92s_firmware_set_h2c_cmd()
|
/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
D | fw.c | 166 u8 element_id, u32 cmd_len, in _rtl88e_fill_h2c_command() argument 278 switch (cmd_len) { in _rtl88e_fill_h2c_command() 284 cmd_b + buf_index, cmd_len); in _rtl88e_fill_h2c_command() 297 cmd_b + buf_index+3, cmd_len-3); in _rtl88e_fill_h2c_command() 313 "switch case %#x not processed\n", cmd_len); in _rtl88e_fill_h2c_command() 336 u8 element_id, u32 cmd_len, u8 *cmdbuffer) in rtl88e_fill_h2c_cmd() argument 348 memcpy(tmp_cmdbuf, cmdbuffer, cmd_len); in rtl88e_fill_h2c_cmd() 349 _rtl88e_fill_h2c_command(hw, element_id, cmd_len, (u8 *)&tmp_cmdbuf); in rtl88e_fill_h2c_cmd()
|
/drivers/net/wireless/ath/ath9k/ |
D | wmi.c | 309 u8 *cmd_buf, u32 cmd_len, in ath9k_wmi_cmd() argument 324 skb = alloc_skb(headroom + cmd_len, GFP_ATOMIC); in ath9k_wmi_cmd() 330 if (cmd_len != 0 && cmd_buf != NULL) { in ath9k_wmi_cmd() 331 skb_put_data(skb, cmd_buf, cmd_len); in ath9k_wmi_cmd() 342 ret = ath9k_wmi_cmd_issue(wmi, skb, cmd_id, cmd_len, rsp_buf, rsp_len); in ath9k_wmi_cmd()
|
/drivers/input/mouse/ |
D | cyapa_gen5.c | 538 u8 *cmd, size_t cmd_len, in cyapa_do_i2c_pip_cmd_irq_sync() argument 548 error = cyapa_i2c_pip_write(cyapa, cmd, cmd_len); in cyapa_do_i2c_pip_cmd_irq_sync() 567 u8 *cmd, size_t cmd_len, in cyapa_do_i2c_pip_cmd_polling() argument 578 error = cyapa_i2c_pip_write(cyapa, cmd, cmd_len); in cyapa_do_i2c_pip_cmd_polling() 607 u8 *cmd, int cmd_len, in cyapa_i2c_pip_cmd_irq_sync() argument 616 if (!cmd || !cmd_len) in cyapa_i2c_pip_cmd_irq_sync() 628 if (cmd_len >= PIP_MIN_APP_CMD_LENGTH && in cyapa_i2c_pip_cmd_irq_sync() 632 } else if (cmd_len >= PIP_MIN_BL_CMD_LENGTH && in cyapa_i2c_pip_cmd_irq_sync() 641 error = cyapa_do_i2c_pip_cmd_irq_sync(cyapa, cmd, cmd_len, in cyapa_i2c_pip_cmd_irq_sync() 657 error = cyapa_do_i2c_pip_cmd_polling(cyapa, cmd, cmd_len, in cyapa_i2c_pip_cmd_irq_sync() [all …]
|
/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
D | fw.c | 29 u32 cmd_len, u8 *cmdbuffer) in _rtl8723e_fill_h2c_command() argument 143 switch (cmd_len) { in _rtl8723e_fill_h2c_command() 210 cmd_len); in _rtl8723e_fill_h2c_command() 233 u8 element_id, u32 cmd_len, u8 *cmdbuffer) in rtl8723e_fill_h2c_cmd() argument 244 memcpy(tmp_cmdbuf, cmdbuffer, cmd_len); in rtl8723e_fill_h2c_cmd() 245 _rtl8723e_fill_h2c_command(hw, element_id, cmd_len, in rtl8723e_fill_h2c_cmd()
|
/drivers/media/cec/usb/pulse8/ |
D | pulse8-cec.c | 210 static int pulse8_send(struct serio *serio, const u8 *command, u8 cmd_len) in pulse8_send() argument 217 for (; !err && cmd_len; command++, cmd_len--) { in pulse8_send() 233 const u8 *cmd, u8 cmd_len, in pulse8_send_and_wait_once() argument 240 pulse8_msgname(cmd[0]), cmd_len, cmd); in pulse8_send_and_wait_once() 243 err = pulse8_send(pulse8->serio, cmd, cmd_len); in pulse8_send_and_wait_once() 265 const u8 *cmd, u8 cmd_len, u8 response, u8 size) in pulse8_send_and_wait() argument 270 err = pulse8_send_and_wait_once(pulse8, cmd, cmd_len, response, size); in pulse8_send_and_wait() 279 err = pulse8_send_and_wait_once(pulse8, cmd, cmd_len, in pulse8_send_and_wait()
|
/drivers/media/pci/ddbridge/ |
D | ddbridge-mci.c | 62 u32 *cmd, u32 cmd_len, in _mci_cmd_unlocked() argument 72 if (cmd && cmd_len) in _mci_cmd_unlocked() 73 for (i = 0; i < cmd_len; i++) in _mci_cmd_unlocked()
|
/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
D | fw.c | 270 u8 element_id, u32 cmd_len, u8 *cmdbuffer) in _rtl92d_fill_h2c_command() argument 380 switch (cmd_len) { in _rtl92d_fill_h2c_command() 426 cmd_len); in _rtl92d_fill_h2c_command() 444 u8 element_id, u32 cmd_len, u8 *cmdbuffer) in rtl92d_fill_h2c_cmd() argument 449 memcpy(tmp_cmdbuf, cmdbuffer, cmd_len); in rtl92d_fill_h2c_cmd() 450 _rtl92d_fill_h2c_command(hw, element_id, cmd_len, (u8 *)&tmp_cmdbuf); in rtl92d_fill_h2c_cmd()
|