hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/scsi/mac53c94.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * SCSI low-level driver for the 53c94 SCSI bus adaptor found
34 * on Power Macintosh computers, controlling the external SCSI chain.
....@@ -19,9 +20,9 @@
1920 #include <linux/interrupt.h>
2021 #include <linux/module.h>
2122 #include <linux/pci.h>
23
+#include <linux/pgtable.h>
2224 #include <asm/dbdma.h>
2325 #include <asm/io.h>
24
-#include <asm/pgtable.h>
2526 #include <asm/prom.h>
2627 #include <asm/macio.h>
2728
....@@ -403,7 +404,7 @@
403404 .can_queue = 1,
404405 .this_id = 7,
405406 .sg_tablesize = SG_ALL,
406
- .use_clustering = DISABLE_CLUSTERING,
407
+ .max_segment_size = 65535,
407408 };
408409
409410 static int mac53c94_probe(struct macio_dev *mdev, const struct of_device_id *match)