| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | #include <linux/types.h> |
|---|
| 2 | 3 | #include <linux/init.h> |
|---|
| 3 | 4 | #include <linux/interrupt.h> |
|---|
| .. | .. |
|---|
| 8 | 9 | #include <linux/module.h> |
|---|
| 9 | 10 | |
|---|
| 10 | 11 | #include <asm/page.h> |
|---|
| 11 | | -#include <asm/pgtable.h> |
|---|
| 12 | 12 | #include <asm/amigaints.h> |
|---|
| 13 | 13 | #include <asm/amigahw.h> |
|---|
| 14 | 14 | |
|---|
| .. | .. |
|---|
| 160 | 160 | .this_id = 7, |
|---|
| 161 | 161 | .sg_tablesize = SG_ALL, |
|---|
| 162 | 162 | .cmd_per_lun = CMD_PER_LUN, |
|---|
| 163 | | - .use_clustering = DISABLE_CLUSTERING |
|---|
| 163 | + .dma_boundary = PAGE_SIZE - 1, |
|---|
| 164 | 164 | }; |
|---|
| 165 | 165 | |
|---|
| 166 | 166 | static int a2091_probe(struct zorro_dev *z, const struct zorro_device_id *ent) |
|---|