patch-2.1.36 linux/drivers/net/hydra.c
Next file: linux/drivers/net/ibmtr.c
Previous file: linux/drivers/net/hp100.c
Back to the patch index
Back to the overall index
- Lines: 53
- Date:
Tue Apr 22 22:42:49 1997
- Orig file:
v2.1.35/linux/drivers/net/hydra.c
- Orig date:
Sun Feb 2 05:18:40 1997
diff -u --recursive --new-file v2.1.35/linux/drivers/net/hydra.c linux/drivers/net/hydra.c
@@ -27,6 +27,7 @@
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
+#include <linux/init.h>
#include <asm/bitops.h>
#include <asm/io.h>
@@ -34,7 +35,7 @@
#include <asm/amigaints.h>
#include <asm/amigahw.h>
-#include <asm/zorro.h>
+#include <linux/zorro.h>
#include "hydra.h"
@@ -156,7 +157,7 @@
#endif
-int hydra_probe(struct device *dev)
+__initfunc(int hydra_probe(struct device *dev))
{
struct hydra_private *priv;
u32 board;
@@ -193,7 +194,9 @@
dev->stop = &hydra_close;
dev->hard_start_xmit = &hydra_start_xmit;
dev->get_stats = &hydra_get_stats;
- dev->set_multicast_list = &hydra_set_multicast_list;
+#ifdef HAVE_MULTICAST
+ dev->set_multicast_list = &set_multicast_list;
+#endif
/*
* Cannot yet do multicast
@@ -643,6 +646,7 @@
return(&priv->stats);
}
+#ifdef HAVE_MULTICAST
static void set_multicast_list(struct device *dev, int num_addrs, void *addrs)
{
struct hydra_private *priv = (struct hydra_private *)dev->priv;
@@ -652,6 +656,7 @@
/* (personally i don't care about multicasts at all :) */
return;
}
+#endif
#ifdef MODULE
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov