|
@@ -78,6 +78,8 @@ static const char* host_info(struct Scsi_Host *host)
|
|
|
|
|
|
static int slave_alloc (struct scsi_device *sdev)
|
|
|
{
|
|
|
+ struct us_data *us = host_to_us(sdev->host);
|
|
|
+
|
|
|
/*
|
|
|
* Set the INQUIRY transfer length to 36. We don't use any of
|
|
|
* the extra data and many devices choke if asked for more or
|
|
@@ -102,6 +104,10 @@ static int slave_alloc (struct scsi_device *sdev)
|
|
|
*/
|
|
|
blk_queue_update_dma_alignment(sdev->request_queue, (512 - 1));
|
|
|
|
|
|
+ /* Tell the SCSI layer if we know there is more than one LUN */
|
|
|
+ if (us->protocol == USB_PR_BULK && us->max_lun > 0)
|
|
|
+ sdev->sdev_bflags |= BLIST_FORCELUN;
|
|
|
+
|
|
|
return 0;
|
|
|
}
|
|
|
|