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/conf.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/conf.c')
-rw-r--r-- | i386/i386at/conf.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/i386/i386at/conf.c b/i386/i386at/conf.c index f36fcc5a..e40d0d80 100644 --- a/i386/i386at/conf.c +++ b/i386/i386at/conf.c @@ -43,13 +43,6 @@ extern int paropen(), paroutput(), pargetstat(), parsetstat(), #define parname "par" #endif /* NPAR > 0 */ -#include <de6c.h> -#if NDE6C > 0 -extern int de6copen(), de6coutput(), de6cgetstat(), de6csetstat(), - de6csetinput(); -#define de6cname "de" -#endif /* NDE6C > 0 */ - extern int kdopen(), kdclose(), kdread(), kdwrite(); extern int kdgetstat(), kdsetstat(), kdportdeath(); extern vm_offset_t kdmmap(); @@ -118,13 +111,6 @@ struct dev_ops dev_name_list[] = parsetinput, nulldev, nulldev, 0, nodev }, #endif - -#if NDE6C > 0 - { de6cname, de6copen, nulldev, nulldev, - de6coutput, de6cgetstat, de6csetstat, nomap, - de6csetinput, nulldev, nulldev, 0, - nodev }, -#endif #endif /* ! LINUX_DEV */ #if NCOM > 0 |