aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/Space.c
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2013-01-09 20:30:26 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2013-01-22 10:39:49 -0500
commit168e06ae26dd327df347e70b7244218ff1766a1f (patch)
tree03ce0fd097f6e0fd98227448882c8520eb3d9302 /drivers/net/Space.c
parentde8270ff4642f78ff62e9bae20e6ebf39677880c (diff)
drivers/net: delete old parallel port de600/de620 drivers
The parallel port is largely replaced by USB, and even in the day where these drivers were current, the documented speed was less than 100kB/s. Let us not pretend that anyone cares about these drivers anymore, or worse - pretend that anyone is using them on a modern kernel. As a side bonus, this is the end of legacy parallel port ethernet, so we get to drop the whole chunk relating to that in the legacy Space.c file containing the non-PCI unified probe dispatch. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/net/Space.c')
-rw-r--r--drivers/net/Space.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/net/Space.c b/drivers/net/Space.c
index 64cd86efab96..d48712751357 100644
--- a/drivers/net/Space.c
+++ b/drivers/net/Space.c
@@ -73,9 +73,6 @@ extern struct net_device *mac89x0_probe(int unit);
73extern struct net_device *cops_probe(int unit); 73extern struct net_device *cops_probe(int unit);
74extern struct net_device *ltpc_probe(void); 74extern struct net_device *ltpc_probe(void);
75 75
76/* Detachable devices ("pocket adaptors") */
77extern struct net_device *de620_probe(int unit);
78
79/* Fibre Channel adapters */ 76/* Fibre Channel adapters */
80extern int iph5526_probe(struct net_device *dev); 77extern int iph5526_probe(struct net_device *dev);
81 78
@@ -185,13 +182,6 @@ static struct devprobe2 isa_probes[] __initdata = {
185 {NULL, 0}, 182 {NULL, 0},
186}; 183};
187 184
188static struct devprobe2 parport_probes[] __initdata = {
189#ifdef CONFIG_DE620 /* D-Link DE-620 adapter */
190 {de620_probe, 0},
191#endif
192 {NULL, 0},
193};
194
195static struct devprobe2 m68k_probes[] __initdata = { 185static struct devprobe2 m68k_probes[] __initdata = {
196#ifdef CONFIG_ATARILANCE /* Lance-based Atari ethernet boards */ 186#ifdef CONFIG_ATARILANCE /* Lance-based Atari ethernet boards */
197 {atarilance_probe, 0}, 187 {atarilance_probe, 0},
@@ -230,8 +220,7 @@ static void __init ethif_probe2(int unit)
230 return; 220 return;
231 221
232 (void)( probe_list2(unit, m68k_probes, base_addr == 0) && 222 (void)( probe_list2(unit, m68k_probes, base_addr == 0) &&
233 probe_list2(unit, isa_probes, base_addr == 0) && 223 probe_list2(unit, isa_probes, base_addr == 0));
234 probe_list2(unit, parport_probes, base_addr == 0));
235} 224}
236 225
237/* Statically configured drivers -- order matters here. */ 226/* Statically configured drivers -- order matters here. */