patch-2.1.125 linux/drivers/net/Space.c
Next file: linux/drivers/net/ac3200.c
Previous file: linux/drivers/net/Makefile
Back to the patch index
Back to the overall index
- Lines: 51
- Date:
Wed Oct 7 15:51:45 1998
- Orig file:
v2.1.124/linux/drivers/net/Space.c
- Orig date:
Mon Oct 5 13:13:39 1998
diff -u --recursive --new-file v2.1.124/linux/drivers/net/Space.c linux/drivers/net/Space.c
@@ -72,6 +72,7 @@
extern int ac3200_probe(struct device *);
extern int es_probe(struct device *);
extern int lne390_probe(struct device *);
+extern int ne3210_probe(struct device *);
extern int e2100_probe(struct device *);
extern int ni5010_probe(struct device *);
extern int ni52_probe(struct device *);
@@ -122,6 +123,7 @@
/* HIPPI boards */
extern int cern_hippi_probe(struct device *);
+extern int rr_hippi_probe(struct device *);
struct devprobe
{
@@ -215,6 +217,9 @@
#ifdef CONFIG_LNE390
{lne390_probe, 0},
#endif
+#ifdef CONFIG_NE3210
+ {ne3210_probe, 0},
+#endif
{NULL, 0},
};
@@ -515,6 +520,9 @@
#ifdef CONFIG_CERN_HIPPI
&& cern_hippi_probe(dev)
#endif
+#ifdef CONFIG_ROADRUNNER
+ && rr_hippi_probe(dev)
+#endif
&& 1 ) {
return 1; /* -ENODEV or -EAGAIN would be more accurate. */
}
@@ -735,11 +743,11 @@
#ifdef CONFIG_HIPPI
static struct device hip3_dev =
- {"hip3", 0, 0, 0, 0, -1, 0, 0, 0, 0, NEXT_DEV, hippi_probe};
+ {"hip3", 0, 0, 0, 0, 0, 0, 0, 0, 0, NEXT_DEV, hippi_probe};
static struct device hip2_dev =
- {"hip2", 0, 0, 0, 0, -1, 0, 0, 0, 0, &hip3_dev, hippi_probe};
+ {"hip2", 0, 0, 0, 0, 0, 0, 0, 0, 0, &hip3_dev, hippi_probe};
static struct device hip1_dev =
- {"hip1", 0, 0, 0, 0, -1, 0, 0, 0, 0, &hip2_dev, hippi_probe};
+ {"hip1", 0, 0, 0, 0, 0, 0, 0, 0, 0, &hip2_dev, hippi_probe};
static struct device hip0_dev =
{"hip0", 0, 0, 0, 0, 0, 0, 0, 0, 0, &hip1_dev, hippi_probe};
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov