patch-2.2.0-pre6 linux/drivers/net/ne2.c
Next file: linux/drivers/net/rcmtl.h
Previous file: linux/drivers/net/hp100.c
Back to the patch index
Back to the overall index
- Lines: 38
- Date:
Thu Jan 7 09:21:53 1999
- Orig file:
v2.2.0-pre5/linux/drivers/net/ne2.c
- Orig date:
Tue Dec 22 14:16:55 1998
diff -u --recursive --new-file v2.2.0-pre5/linux/drivers/net/ne2.c linux/drivers/net/ne2.c
@@ -43,6 +43,9 @@
- Added code that unregisters irq and proc-info
- Version# bump
+ Mon Nov 16 15:28:23 CET 1998 (Wim Dumon)
+ - pass 'dev' as last parameter of request_irq in stead of 'NULL'
+
* WARNING
-------
This is alpha-test software. It is not guaranteed to work. As a
@@ -51,8 +54,7 @@
If it doesn't work, be sure to send me a mail with the problems !
*/
-static const char *version =
-"ne2.c:v0.90 Oct 14 1998 David Weinehall <tao@acc.umu.se>\n";
+static const char *version = "ne2.c:v0.91 Nov 16 1998 Wim Dumon <wimpie@kotnet.org>\n";
#include <linux/module.h>
#include <linux/version.h>
@@ -317,7 +319,7 @@
share and the board will usually be enabled. */
{
int irqval = request_irq(dev->irq, ei_interrupt,
- 0, name, NULL);
+ 0, name, dev);
if (irqval) {
printk (" unable to get IRQ %d (irqval=%d).\n",
dev->irq, +irqval);
@@ -330,7 +332,7 @@
/* Allocate dev->priv and fill in 8390 specific dev fields. */
if (ethdev_init(dev)) {
printk (" unable to get memory for dev->priv.\n");
- free_irq(dev->irq, NULL);
+ free_irq(dev->irq, dev);
return -ENOMEM;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov