uas: uas_alloc_cmd_urb: drop unused stream_id parameter
The cmd endpoint never has streams, so the stream_id parameter is unused. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
This commit is contained in:
parent
7e50e0bec4
commit
a887cd3663
1 changed files with 2 additions and 3 deletions
|
@ -454,7 +454,7 @@ static struct urb *uas_alloc_sense_urb(struct uas_dev_info *devinfo, gfp_t gfp,
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct urb *uas_alloc_cmd_urb(struct uas_dev_info *devinfo, gfp_t gfp,
|
static struct urb *uas_alloc_cmd_urb(struct uas_dev_info *devinfo, gfp_t gfp,
|
||||||
struct scsi_cmnd *cmnd, u16 stream_id)
|
struct scsi_cmnd *cmnd)
|
||||||
{
|
{
|
||||||
struct usb_device *udev = devinfo->udev;
|
struct usb_device *udev = devinfo->udev;
|
||||||
struct scsi_device *sdev = cmnd->device;
|
struct scsi_device *sdev = cmnd->device;
|
||||||
|
@ -626,8 +626,7 @@ static int uas_submit_urbs(struct scsi_cmnd *cmnd,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cmdinfo->state & ALLOC_CMD_URB) {
|
if (cmdinfo->state & ALLOC_CMD_URB) {
|
||||||
cmdinfo->cmd_urb = uas_alloc_cmd_urb(devinfo, gfp, cmnd,
|
cmdinfo->cmd_urb = uas_alloc_cmd_urb(devinfo, gfp, cmnd);
|
||||||
cmdinfo->stream);
|
|
||||||
if (!cmdinfo->cmd_urb)
|
if (!cmdinfo->cmd_urb)
|
||||||
return SCSI_MLQUEUE_DEVICE_BUSY;
|
return SCSI_MLQUEUE_DEVICE_BUSY;
|
||||||
cmdinfo->state &= ~ALLOC_CMD_URB;
|
cmdinfo->state &= ~ALLOC_CMD_URB;
|
||||||
|
|
Loading…
Add table
Reference in a new issue