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
|
@ -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,
|
||||
struct scsi_cmnd *cmnd, u16 stream_id)
|
||||
struct scsi_cmnd *cmnd)
|
||||
{
|
||||
struct usb_device *udev = devinfo->udev;
|
||||
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) {
|
||||
cmdinfo->cmd_urb = uas_alloc_cmd_urb(devinfo, gfp, cmnd,
|
||||
cmdinfo->stream);
|
||||
cmdinfo->cmd_urb = uas_alloc_cmd_urb(devinfo, gfp, cmnd);
|
||||
if (!cmdinfo->cmd_urb)
|
||||
return SCSI_MLQUEUE_DEVICE_BUSY;
|
||||
cmdinfo->state &= ~ALLOC_CMD_URB;
|
||||
|
|
Loading…
Reference in New Issue