diff options
author | Christoph Hellwig <hch@lst.de> | 2018-12-13 10:17:08 -0500 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2018-12-18 23:13:12 -0500 |
commit | 1c3726ad30938725a53f471d7967abfd6838330f (patch) | |
tree | e4c41d99f7ef36a75581fa9e5ebd592209df43b6 | |
parent | 5bd6cd54bd01171176e8be510d429720a3fd2dce (diff) |
scsi: mac53c94: remove DISABLE_CLUSTERING
mac53c94 has no limitations on crossing pages for segments. Just make
the 65535 byte segment size limit explicit, even if it matches the
current block layer limit.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Tested-by: Paul Mackerras <paulus@ozlabs.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r-- | drivers/scsi/mac53c94.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/mac53c94.c b/drivers/scsi/mac53c94.c index 177701dfdfcb..c8e6ae98a4a6 100644 --- a/drivers/scsi/mac53c94.c +++ b/drivers/scsi/mac53c94.c | |||
@@ -403,7 +403,7 @@ static struct scsi_host_template mac53c94_template = { | |||
403 | .can_queue = 1, | 403 | .can_queue = 1, |
404 | .this_id = 7, | 404 | .this_id = 7, |
405 | .sg_tablesize = SG_ALL, | 405 | .sg_tablesize = SG_ALL, |
406 | .use_clustering = DISABLE_CLUSTERING, | 406 | .max_segment_size = 65535, |
407 | }; | 407 | }; |
408 | 408 | ||
409 | static int mac53c94_probe(struct macio_dev *mdev, const struct of_device_id *match) | 409 | static int mac53c94_probe(struct macio_dev *mdev, const struct of_device_id *match) |