Searched defs:cbw (Results 1 - 3 of 3) sorted by relevance

/drivers/mmc/host/
H A Dushc.c101 struct ushc_cbw *cbw; member in struct:ushc_data
281 ushc->cbw->cmd_idx = cpu_to_le16(req->cmd->opcode);
283 ushc->cbw->block_size = cpu_to_le16(req->data->blksz);
285 ushc->cbw->block_size = 0;
286 ushc->cbw->arg = cpu_to_le32(req->cmd->arg);
409 kfree(ushc->cbw);
485 ushc->cbw = kzalloc(sizeof(struct ushc_cbw), GFP_KERNEL);
486 if (ushc->cbw == NULL) {
490 ushc->cbw->signature = USHC_CBW_SIGNATURE;
493 ushc->cbw, sizeo
[all...]
/drivers/usb/gadget/
H A Df_mass_storage.c1848 * implementations. Many have issues with cbw->Length
1854 * REQUEST SENSE with cbw->Length == 12 where it should
1856 * REQUEST SENSE with cbw->Length == 10 where it should
2224 struct fsg_bulk_cb_wrap *cbw = req->buf; local
2233 cbw->Signature != cpu_to_le32(
2237 le32_to_cpu(cbw->Signature));
2256 if (cbw->Lun >= FSG_MAX_LUNS || cbw->Flags & ~USB_BULK_IN_FLAG ||
2257 cbw->Length <= 0 || cbw
[all...]
H A Dfile_storage.c2272 * implementations. Many have issues with cbw->Length
2278 * REQUEST SENSE with cbw->Length == 12 where it should
2280 * REQUEST SENSE with cbw->Length == 10 where it should
2612 struct fsg_bulk_cb_wrap *cbw = req->buf; local
2620 cbw->Signature != cpu_to_le32(
2624 le32_to_cpu(cbw->Signature));
2641 if (cbw->Lun >= FSG_MAX_LUNS || cbw->Flags & ~USB_BULK_IN_FLAG ||
2642 cbw->Length <= 0 || cbw
[all...]

Completed in 57 milliseconds