diff options
| -rw-r--r-- | drivers/net/Space.c | 29 | ||||
| -rw-r--r-- | drivers/net/wan/sbni.c | 1 | ||||
| -rw-r--r-- | include/net/Space.h | 31 |
3 files changed, 33 insertions, 28 deletions
diff --git a/drivers/net/Space.c b/drivers/net/Space.c index a7271e093845..67977f15af25 100644 --- a/drivers/net/Space.c +++ b/drivers/net/Space.c | |||
| @@ -32,39 +32,12 @@ | |||
| 32 | #include <linux/errno.h> | 32 | #include <linux/errno.h> |
| 33 | #include <linux/init.h> | 33 | #include <linux/init.h> |
| 34 | #include <linux/netlink.h> | 34 | #include <linux/netlink.h> |
| 35 | #include <net/Space.h> | ||
| 35 | 36 | ||
| 36 | /* A unified ethernet device probe. This is the easiest way to have every | 37 | /* A unified ethernet device probe. This is the easiest way to have every |
| 37 | ethernet adaptor have the name "eth[0123...]". | 38 | ethernet adaptor have the name "eth[0123...]". |
| 38 | */ | 39 | */ |
| 39 | 40 | ||
| 40 | extern struct net_device *hp100_probe(int unit); | ||
| 41 | extern struct net_device *ultra_probe(int unit); | ||
| 42 | extern struct net_device *wd_probe(int unit); | ||
| 43 | extern struct net_device *ne_probe(int unit); | ||
| 44 | extern struct net_device *fmv18x_probe(int unit); | ||
| 45 | extern struct net_device *i82596_probe(int unit); | ||
| 46 | extern struct net_device *ni65_probe(int unit); | ||
| 47 | extern struct net_device *sonic_probe(int unit); | ||
| 48 | extern struct net_device *smc_init(int unit); | ||
| 49 | extern struct net_device *atarilance_probe(int unit); | ||
| 50 | extern struct net_device *sun3lance_probe(int unit); | ||
| 51 | extern struct net_device *sun3_82586_probe(int unit); | ||
| 52 | extern struct net_device *apne_probe(int unit); | ||
| 53 | extern struct net_device *cs89x0_probe(int unit); | ||
| 54 | extern struct net_device *mvme147lance_probe(int unit); | ||
| 55 | extern struct net_device *tc515_probe(int unit); | ||
| 56 | extern struct net_device *lance_probe(int unit); | ||
| 57 | extern struct net_device *mac8390_probe(int unit); | ||
| 58 | extern struct net_device *mac89x0_probe(int unit); | ||
| 59 | extern struct net_device *cops_probe(int unit); | ||
| 60 | extern struct net_device *ltpc_probe(void); | ||
| 61 | |||
| 62 | /* Fibre Channel adapters */ | ||
| 63 | extern int iph5526_probe(struct net_device *dev); | ||
| 64 | |||
| 65 | /* SBNI adapters */ | ||
| 66 | extern int sbni_probe(int unit); | ||
| 67 | |||
| 68 | struct devprobe2 { | 41 | struct devprobe2 { |
| 69 | struct net_device *(*probe)(int unit); | 42 | struct net_device *(*probe)(int unit); |
| 70 | int status; /* non-zero if autoprobe has failed */ | 43 | int status; /* non-zero if autoprobe has failed */ |
diff --git a/drivers/net/wan/sbni.c b/drivers/net/wan/sbni.c index 388ddf60a66d..1b89ecf0959e 100644 --- a/drivers/net/wan/sbni.c +++ b/drivers/net/wan/sbni.c | |||
| @@ -57,6 +57,7 @@ | |||
| 57 | 57 | ||
| 58 | #include <net/net_namespace.h> | 58 | #include <net/net_namespace.h> |
| 59 | #include <net/arp.h> | 59 | #include <net/arp.h> |
| 60 | #include <net/Space.h> | ||
| 60 | 61 | ||
| 61 | #include <asm/io.h> | 62 | #include <asm/io.h> |
| 62 | #include <asm/types.h> | 63 | #include <asm/types.h> |
diff --git a/include/net/Space.h b/include/net/Space.h new file mode 100644 index 000000000000..8a32771e4215 --- /dev/null +++ b/include/net/Space.h | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | /* A unified ethernet device probe. This is the easiest way to have every | ||
| 2 | * ethernet adaptor have the name "eth[0123...]". | ||
| 3 | */ | ||
| 4 | |||
| 5 | struct net_device *hp100_probe(int unit); | ||
| 6 | struct net_device *ultra_probe(int unit); | ||
| 7 | struct net_device *wd_probe(int unit); | ||
| 8 | struct net_device *ne_probe(int unit); | ||
| 9 | struct net_device *fmv18x_probe(int unit); | ||
| 10 | struct net_device *i82596_probe(int unit); | ||
| 11 | struct net_device *ni65_probe(int unit); | ||
| 12 | struct net_device *sonic_probe(int unit); | ||
| 13 | struct net_device *smc_init(int unit); | ||
| 14 | struct net_device *atarilance_probe(int unit); | ||
| 15 | struct net_device *sun3lance_probe(int unit); | ||
| 16 | struct net_device *sun3_82586_probe(int unit); | ||
| 17 | struct net_device *apne_probe(int unit); | ||
| 18 | struct net_device *cs89x0_probe(int unit); | ||
| 19 | struct net_device *mvme147lance_probe(int unit); | ||
| 20 | struct net_device *tc515_probe(int unit); | ||
| 21 | struct net_device *lance_probe(int unit); | ||
| 22 | struct net_device *mac8390_probe(int unit); | ||
| 23 | struct net_device *mac89x0_probe(int unit); | ||
| 24 | struct net_device *cops_probe(int unit); | ||
| 25 | struct net_device *ltpc_probe(void); | ||
| 26 | |||
| 27 | /* Fibre Channel adapters */ | ||
| 28 | int iph5526_probe(struct net_device *dev); | ||
| 29 | |||
| 30 | /* SBNI adapters */ | ||
| 31 | int sbni_probe(int unit); | ||
