.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * SCSI low-level driver for the 53c94 SCSI bus adaptor found |
---|
3 | 4 | * on Power Macintosh computers, controlling the external SCSI chain. |
---|
.. | .. |
---|
19 | 20 | #include <linux/interrupt.h> |
---|
20 | 21 | #include <linux/module.h> |
---|
21 | 22 | #include <linux/pci.h> |
---|
| 23 | +#include <linux/pgtable.h> |
---|
22 | 24 | #include <asm/dbdma.h> |
---|
23 | 25 | #include <asm/io.h> |
---|
24 | | -#include <asm/pgtable.h> |
---|
25 | 26 | #include <asm/prom.h> |
---|
26 | 27 | #include <asm/macio.h> |
---|
27 | 28 | |
---|
.. | .. |
---|
403 | 404 | .can_queue = 1, |
---|
404 | 405 | .this_id = 7, |
---|
405 | 406 | .sg_tablesize = SG_ALL, |
---|
406 | | - .use_clustering = DISABLE_CLUSTERING, |
---|
| 407 | + .max_segment_size = 65535, |
---|
407 | 408 | }; |
---|
408 | 409 | |
---|
409 | 410 | static int mac53c94_probe(struct macio_dev *mdev, const struct of_device_id *match) |
---|