| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | #include <linux/types.h> |
|---|
| 2 | 3 | #include <linux/mm.h> |
|---|
| 3 | 4 | #include <linux/ioport.h> |
|---|
| .. | .. |
|---|
| 9 | 10 | #include <linux/module.h> |
|---|
| 10 | 11 | |
|---|
| 11 | 12 | #include <asm/page.h> |
|---|
| 12 | | -#include <asm/pgtable.h> |
|---|
| 13 | 13 | #include <asm/amigaints.h> |
|---|
| 14 | 14 | #include <asm/amigahw.h> |
|---|
| 15 | 15 | |
|---|
| .. | .. |
|---|
| 38 | 38 | spin_unlock_irqrestore(instance->host_lock, flags); |
|---|
| 39 | 39 | return IRQ_HANDLED; |
|---|
| 40 | 40 | } |
|---|
| 41 | | - pr_warning("Non-serviced A3000 SCSI-interrupt? ISTR = %02x\n", status); |
|---|
| 41 | + pr_warn("Non-serviced A3000 SCSI-interrupt? ISTR = %02x\n", status); |
|---|
| 42 | 42 | return IRQ_NONE; |
|---|
| 43 | 43 | } |
|---|
| 44 | 44 | |
|---|
| .. | .. |
|---|
| 175 | 175 | .this_id = 7, |
|---|
| 176 | 176 | .sg_tablesize = SG_ALL, |
|---|
| 177 | 177 | .cmd_per_lun = CMD_PER_LUN, |
|---|
| 178 | | - .use_clustering = ENABLE_CLUSTERING |
|---|
| 179 | 178 | }; |
|---|
| 180 | 179 | |
|---|
| 181 | 180 | static int __init amiga_a3000_scsi_probe(struct platform_device *pdev) |
|---|