diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2012-05-18 18:41:28 +0200 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2012-05-21 21:42:51 +0200 |
commit | 935f672e02c8172a23bd3e54feafffcfcce39f0d (patch) | |
tree | f3cc2bdfeb3751d8752186a7ef05d66c580ac824 /drivers/firewire | |
parent | f203022353eb3e0b059a72a43762e240e9682c91 (diff) | |
download | linux-3.10-935f672e02c8172a23bd3e54feafffcfcce39f0d.tar.gz linux-3.10-935f672e02c8172a23bd3e54feafffcfcce39f0d.tar.bz2 linux-3.10-935f672e02c8172a23bd3e54feafffcfcce39f0d.zip |
firewire: sbp2: remove superfluous blk_queue_max_segment_size() call
The SCSI framework automatically initializes the block queue's segment
size with the DMA device's segment size.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/sbp2.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/firewire/sbp2.c b/drivers/firewire/sbp2.c index 6ffaef3307e..1f888f3ef7a 100644 --- a/drivers/firewire/sbp2.c +++ b/drivers/firewire/sbp2.c @@ -1564,8 +1564,6 @@ static int sbp2_scsi_slave_configure(struct scsi_device *sdev) if (lu->tgt->workarounds & SBP2_WORKAROUND_128K_MAX_TRANS) blk_queue_max_hw_sectors(sdev->request_queue, 128 * 1024 / 512); - blk_queue_max_segment_size(sdev->request_queue, SBP2_MAX_SEG_SIZE); - return 0; } |