diff options
Diffstat (limited to 'drivers/net/pci-skeleton.c')
-rw-r--r-- | drivers/net/pci-skeleton.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/pci-skeleton.c b/drivers/net/pci-skeleton.c index a7bb54df75a8..3388ee1313ea 100644 --- a/drivers/net/pci-skeleton.c +++ b/drivers/net/pci-skeleton.c | |||
@@ -85,7 +85,6 @@ IVc. Errata | |||
85 | 85 | ||
86 | */ | 86 | */ |
87 | 87 | ||
88 | #include <linux/config.h> | ||
89 | #include <linux/module.h> | 88 | #include <linux/module.h> |
90 | #include <linux/kernel.h> | 89 | #include <linux/kernel.h> |
91 | #include <linux/pci.h> | 90 | #include <linux/pci.h> |
@@ -1076,7 +1075,7 @@ static int netdrv_open (struct net_device *dev) | |||
1076 | 1075 | ||
1077 | DPRINTK ("ENTER\n"); | 1076 | DPRINTK ("ENTER\n"); |
1078 | 1077 | ||
1079 | retval = request_irq (dev->irq, netdrv_interrupt, SA_SHIRQ, dev->name, dev); | 1078 | retval = request_irq (dev->irq, netdrv_interrupt, IRQF_SHARED, dev->name, dev); |
1080 | if (retval) { | 1079 | if (retval) { |
1081 | DPRINTK ("EXIT, returning %d\n", retval); | 1080 | DPRINTK ("EXIT, returning %d\n", retval); |
1082 | return retval; | 1081 | return retval; |