diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-03-04 17:29:14 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:35 +0200 |
commit | 5726d4c23bc67529facef293c981d3a23af10b01 (patch) | |
tree | 00dd48051364e94809541f82ec02de854ed8918d /i386/i386at/lpr.c | |
parent | 5336c3ebb0f9e0c367f3a2339345efe1a71b3c2b (diff) | |
download | gnumach-5726d4c23bc67529facef293c981d3a23af10b01.tar.gz gnumach-5726d4c23bc67529facef293c981d3a23af10b01.tar.bz2 gnumach-5726d4c23bc67529facef293c981d3a23af10b01.zip |
2006-03-04 Thomas Schwinge <tschwinge@gnu.org>
Remove unused and unsupported code. Consult the file
`DEVELOPMENT' for details. Partly based on suggestions by
Gianluca Guida <glguida@gmail.com>.
* i386/bogus/de6c.h: Remove file.
* i386/i386at/if_de6c.c: Likewise.
* i386/i386at/if_de6c.h: Likewise.
* i386/i386at/if_de6s.S: Likewise.
* i386/i386at/conf.c: Don't include <de6c.h> anymore and adopt all
users of NDE6C as if it were always defined to `0'.
* i386/i386at/lpr.c: Likewise.
Diffstat (limited to 'i386/i386at/lpr.c')
-rw-r--r-- | i386/i386at/lpr.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/i386/i386at/lpr.c b/i386/i386at/lpr.c index 09afbfc6..17bafeb2 100644 --- a/i386/i386at/lpr.c +++ b/i386/i386at/lpr.c @@ -31,7 +31,6 @@ #include <lpr.h> #if NLPR > 0 #include <par.h> -#include <de6c.h> #ifdef MACH_KERNEL #include <mach/std_types.h> @@ -63,10 +62,6 @@ extern int parattach(); #endif -#if NDE6C > 0 -extern int de6cattach(); -#endif - extern void splx(); extern spl_t spltty(); extern void timeout(); @@ -136,9 +131,6 @@ void lprattach(struct bus_device *dev) parattach(dev); #endif -#if NDE6C > 0 && !defined(LINUX_DEV) - de6cattach(dev); -#endif return; } |