aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/sim710.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/sim710.c')
-rw-r--r--drivers/scsi/sim710.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/sim710.c b/drivers/scsi/sim710.c
index 255886a9ac55..551baccec523 100644
--- a/drivers/scsi/sim710.c
+++ b/drivers/scsi/sim710.c
@@ -26,7 +26,6 @@
26 * 26 *
27 */ 27 */
28 28
29#include <linux/config.h>
30#include <linux/module.h> 29#include <linux/module.h>
31 30
32#include <linux/blkdev.h> 31#include <linux/blkdev.h>
@@ -134,7 +133,7 @@ sim710_probe_common(struct device *dev, unsigned long base_addr,
134 host->this_id = scsi_id; 133 host->this_id = scsi_id;
135 host->base = base_addr; 134 host->base = base_addr;
136 host->irq = irq; 135 host->irq = irq;
137 if (request_irq(irq, NCR_700_intr, SA_SHIRQ, "sim710", host)) { 136 if (request_irq(irq, NCR_700_intr, IRQF_SHARED, "sim710", host)) {
138 printk(KERN_ERR "sim710: request_irq failed\n"); 137 printk(KERN_ERR "sim710: request_irq failed\n");
139 goto out_put_host; 138 goto out_put_host;
140 } 139 }
@@ -283,6 +282,7 @@ static struct eisa_device_id sim710_eisa_ids[] = {
283 { "HWP0C80" }, 282 { "HWP0C80" },
284 { "" } 283 { "" }
285}; 284};
285MODULE_DEVICE_TABLE(eisa, sim710_eisa_ids);
286 286
287static __init int 287static __init int
288sim710_eisa_probe(struct device *dev) 288sim710_eisa_probe(struct device *dev)