hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/scsi/a3000.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 #include <linux/types.h>
23 #include <linux/mm.h>
34 #include <linux/ioport.h>
....@@ -9,7 +10,6 @@
910 #include <linux/module.h>
1011
1112 #include <asm/page.h>
12
-#include <asm/pgtable.h>
1313 #include <asm/amigaints.h>
1414 #include <asm/amigahw.h>
1515
....@@ -38,7 +38,7 @@
3838 spin_unlock_irqrestore(instance->host_lock, flags);
3939 return IRQ_HANDLED;
4040 }
41
- pr_warning("Non-serviced A3000 SCSI-interrupt? ISTR = %02x\n", status);
41
+ pr_warn("Non-serviced A3000 SCSI-interrupt? ISTR = %02x\n", status);
4242 return IRQ_NONE;
4343 }
4444
....@@ -175,7 +175,6 @@
175175 .this_id = 7,
176176 .sg_tablesize = SG_ALL,
177177 .cmd_per_lun = CMD_PER_LUN,
178
- .use_clustering = ENABLE_CLUSTERING
179178 };
180179
181180 static int __init amiga_a3000_scsi_probe(struct platform_device *pdev)