diff options
author | Hannes Reinecke <hare@suse.de> | 2015-04-29 09:57:34 +0300 |
---|---|---|
committer | James Bottomley <JBottomley@Odin.com> | 2015-06-01 04:06:28 +0300 |
commit | b84b1d522f979fb53ad347605e24b2940fa2ad99 (patch) | |
tree | f3d5066024ecf631a27e4f4a3fe35910f7b25356 /drivers/scsi/NCR53c406a.c | |
parent | f532a3f9c47a88b5a4a0c1186d9030cde0e120d2 (diff) | |
download | linux-b84b1d522f979fb53ad347605e24b2940fa2ad99.tar.xz |
scsi: Do not set cmd_per_lun to 1 in the host template
'0' is now used as the default cmd_per_lun value,
so there's no need to explicitly set it to '1' in the
host template.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: James Bottomley <JBottomley@Odin.com>
Diffstat (limited to 'drivers/scsi/NCR53c406a.c')
-rw-r--r-- | drivers/scsi/NCR53c406a.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/scsi/NCR53c406a.c b/drivers/scsi/NCR53c406a.c index 42c7161474f7..6e110c630d2c 100644 --- a/drivers/scsi/NCR53c406a.c +++ b/drivers/scsi/NCR53c406a.c @@ -1064,7 +1064,6 @@ static struct scsi_host_template driver_template = .can_queue = 1 /* can_queue */, .this_id = 7 /* SCSI ID of the chip */, .sg_tablesize = 32 /*SG_ALL*/ /*SG_NONE*/, - .cmd_per_lun = 1 /* commands per lun */, .unchecked_isa_dma = 1 /* unchecked_isa_dma */, .use_clustering = ENABLE_CLUSTERING, }; |