Commit f0e373dc authored by Ralf Bächle's avatar Ralf Bächle

[netdrvr] sgiseeq update

parent e3e33952
...@@ -1843,7 +1843,7 @@ config DE620 ...@@ -1843,7 +1843,7 @@ config DE620
The module will be called de620. The module will be called de620.
config SGISEEQ config SGISEEQ
bool "SGI Seeq ethernet controller support" tristate "SGI Seeq ethernet controller support"
depends on NET_ETHERNET && SGI_IP22 depends on NET_ETHERNET && SGI_IP22
help help
Say Y here if you have an Seeq based Ethernet network card. This is Say Y here if you have an Seeq based Ethernet network card. This is
......
...@@ -82,7 +82,6 @@ extern int sonic_probe(struct net_device *); ...@@ -82,7 +82,6 @@ extern int sonic_probe(struct net_device *);
extern int SK_init(struct net_device *); extern int SK_init(struct net_device *);
extern int seeq8005_probe(struct net_device *); extern int seeq8005_probe(struct net_device *);
extern int smc_init( struct net_device * ); extern int smc_init( struct net_device * );
extern int sgiseeq_probe(struct net_device *);
extern int atarilance_probe(struct net_device *); extern int atarilance_probe(struct net_device *);
extern int sun3lance_probe(struct net_device *); extern int sun3lance_probe(struct net_device *);
extern int sun3_82586_probe(struct net_device *); extern int sun3_82586_probe(struct net_device *);
...@@ -343,14 +342,6 @@ static struct devprobe m68k_probes[] __initdata = { ...@@ -343,14 +342,6 @@ static struct devprobe m68k_probes[] __initdata = {
{NULL, 0}, {NULL, 0},
}; };
static struct devprobe sgi_probes[] __initdata = {
#ifdef CONFIG_SGISEEQ
{sgiseeq_probe, 0},
#endif
{NULL, 0},
};
static struct devprobe mips_probes[] __initdata = { static struct devprobe mips_probes[] __initdata = {
#ifdef CONFIG_MIPS_JAZZ_SONIC #ifdef CONFIG_MIPS_JAZZ_SONIC
{sonic_probe, 0}, {sonic_probe, 0},
...@@ -385,8 +376,6 @@ static int __init ethif_probe(struct net_device *dev) ...@@ -385,8 +376,6 @@ static int __init ethif_probe(struct net_device *dev)
return 0; return 0;
if (probe_list(dev, mips_probes) == 0) if (probe_list(dev, mips_probes) == 0)
return 0; return 0;
if (probe_list(dev, sgi_probes) == 0)
return 0;
if (probe_list(dev, eisa_probes) == 0) if (probe_list(dev, eisa_probes) == 0)
return 0; return 0;
if (probe_list(dev, mca_probes) == 0) if (probe_list(dev, mca_probes) == 0)
......
This diff is collapsed.
/* $Id: sgiseeq.h,v 1.4 1999/10/09 00:01:24 ralf Exp $ /*
* sgiseeq.h: Defines for the Seeq8003 ethernet controller. * sgiseeq.h: Defines for the Seeq8003 ethernet controller.
* *
* Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment