patch-1.3.70 linux/drivers/net/eexpress.c
Next file: linux/drivers/net/eth16i.c
Previous file: linux/drivers/net/eepro.c
Back to the patch index
Back to the overall index
- Lines: 36
- Date:
Fri Mar 1 07:50:44 1996
- Orig file:
v1.3.69/linux/drivers/net/eexpress.c
- Orig date:
Sat Nov 25 19:04:46 1995
diff -u --recursive --new-file v1.3.69/linux/drivers/net/eexpress.c linux/drivers/net/eexpress.c
@@ -286,7 +286,7 @@
static int eexp_probe1(struct device *dev, short ioaddr);
static int eexp_open(struct device *dev);
static int eexp_send_packet(struct sk_buff *skb, struct device *dev);
-static void eexp_interrupt(int irq, struct pt_regs *regs);
+static void eexp_interrupt(int irq, void *dev_id, struct pt_regs *regs);
static void eexp_rx(struct device *dev);
static int eexp_close(struct device *dev);
static struct enet_statistics *eexp_get_stats(struct device *dev);
@@ -429,7 +429,7 @@
if (irq2dev_map[dev->irq] != 0
/* This is always true, but avoid the false IRQ. */
|| (irq2dev_map[dev->irq] = dev) == 0
- || request_irq(dev->irq, &eexp_interrupt, 0, "EExpress")) {
+ || request_irq(dev->irq, &eexp_interrupt, 0, "EExpress", NULL)) {
return -EAGAIN;
}
@@ -513,7 +513,7 @@
/* The typical workload of the driver:
Handle the network interface interrupts. */
static void
-eexp_interrupt(int irq, struct pt_regs *regs)
+eexp_interrupt(int irq, void *dev_id, struct pt_regs *regs)
{
struct device *dev = (struct device *)(irq2dev_map[irq]);
struct net_local *lp;
@@ -648,7 +648,7 @@
/* Disable the physical interrupt line. */
outb(0, ioaddr + SET_IRQ);
- free_irq(dev->irq);
+ free_irq(dev->irq, NULL);
irq2dev_map[dev->irq] = 0;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this