aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/appletalk/cops.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/appletalk/cops.c')
-rw-r--r--drivers/net/appletalk/cops.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/appletalk/cops.c b/drivers/net/appletalk/cops.c
index b5dc7f550725..6f8d6206b5c4 100644
--- a/drivers/net/appletalk/cops.c
+++ b/drivers/net/appletalk/cops.c
@@ -56,7 +56,6 @@ static const char *version =
56#include <linux/ptrace.h> 56#include <linux/ptrace.h>
57#include <linux/ioport.h> 57#include <linux/ioport.h>
58#include <linux/in.h> 58#include <linux/in.h>
59#include <linux/slab.h>
60#include <linux/string.h> 59#include <linux/string.h>
61#include <linux/errno.h> 60#include <linux/errno.h>
62#include <linux/init.h> 61#include <linux/init.h>
@@ -120,7 +119,7 @@ static int irq = 5; /* Default IRQ */
120 * DAYNA driver mode: 119 * DAYNA driver mode:
121 * Dayna DL2000/DaynaTalk PC (Half Length), COPS LT-95, 120 * Dayna DL2000/DaynaTalk PC (Half Length), COPS LT-95,
122 * Farallon PhoneNET PC III, Farallon PhoneNET PC II 121 * Farallon PhoneNET PC III, Farallon PhoneNET PC II
123 * Other cards possibly supported mode unkown though: 122 * Other cards possibly supported mode unknown though:
124 * Dayna DL2000 (Full length), COPS LT/M (Micro-Channel) 123 * Dayna DL2000 (Full length), COPS LT/M (Micro-Channel)
125 * 124 *
126 * Cards NOT supported by this driver but supported by the ltpc.c 125 * Cards NOT supported by this driver but supported by the ltpc.c
@@ -328,7 +327,7 @@ static int __init cops_probe1(struct net_device *dev, int ioaddr)
328 327
329 /* Reserve any actual interrupt. */ 328 /* Reserve any actual interrupt. */
330 if (dev->irq) { 329 if (dev->irq) {
331 retval = request_irq(dev->irq, &cops_interrupt, 0, dev->name, dev); 330 retval = request_irq(dev->irq, cops_interrupt, 0, dev->name, dev);
332 if (retval) 331 if (retval)
333 goto err_out; 332 goto err_out;
334 } 333 }