diff options
author | Hans de Goede <j.w.r.degoede@hhs.nl> | 2008-01-20 11:27:29 +0100 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-01-25 16:50:31 -0600 |
commit | 23c3e290fb9ce38cabc2822b47583fc8702411bf (patch) | |
tree | 43c703144aeed36658ed9df1d3080aba4cbcab4b /drivers/usb | |
parent | 366ca51f30de1cbb5b356c70b7bb22051c558e41 (diff) | |
download | linux-3.10-23c3e290fb9ce38cabc2822b47583fc8702411bf.tar.gz linux-3.10-23c3e290fb9ce38cabc2822b47583fc8702411bf.tar.bz2 linux-3.10-23c3e290fb9ce38cabc2822b47583fc8702411bf.zip |
[SCSI] usbstorage: use last_sector_bug flag universally
This patch sets the last_sector_bug flag to 1 for all USB disks. This is
needed to makes the cardreader on various HP multifunction printers work.
Since the performance impact is negible we set this flag for all USB disks to
avoid an unusual_devs.h nightmare.
Signed-off-by: Hans de Goede <j.w.r.degoede@hhs.nl>
Acked-by: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/storage/scsiglue.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/storage/scsiglue.c b/drivers/usb/storage/scsiglue.c index dd8b13ef241..8c1e2954f3b 100644 --- a/drivers/usb/storage/scsiglue.c +++ b/drivers/usb/storage/scsiglue.c @@ -187,6 +187,10 @@ static int slave_configure(struct scsi_device *sdev) * automatically, requiring a START-STOP UNIT command. */ sdev->allow_restart = 1; + /* Some USB cardreaders have trouble reading an sdcard's last + * sector in a larger then 1 sector read, since the performance + * impact is negible we set this flag for all USB disks */ + sdev->last_sector_bug = 1; } else { /* Non-disk-type devices don't need to blacklist any pages |