diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-02-20 19:25:22 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:33 +0200 |
commit | c8075f5570ee013830075e74d2bc06bb52f88194 (patch) | |
tree | 7bae16b5cb515b8ef90f6c771c07a9fd87866a6f /i386/i386at/conf.c | |
parent | 5b16c90c49b899ae62674c352514077a0a6afa2b (diff) | |
download | gnumach-c8075f5570ee013830075e74d2bc06bb52f88194.tar.gz gnumach-c8075f5570ee013830075e74d2bc06bb52f88194.tar.bz2 gnumach-c8075f5570ee013830075e74d2bc06bb52f88194.zip |
2006-02-20 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/hpp.h: Remove file.
* i386/bogus/ul.h: Likewise.
* i386/bogus/wd.h: Likewise.
* i386/i386at/gpl/if_hpp.c: Likewise.
* i386/i386at/gpl/if_ns.c: Likewise.
* i386/i386at/gpl/if_nsreg.h: Likewise.
* i386/i386at/gpl/if_ul.c: Likewise.
* i386/i386at/gpl/if_wd.c: Likewise.
* i386/i386at/autoconf.c: Don't include <hpp.h>, <ul.h> and <wd.h>
anymore and adopt all users of NHPP, NUL and NWD as if they were always
defined to `0'.
* i386/i386at/conf.c: Likewise.
Diffstat (limited to 'i386/i386at/conf.c')
-rw-r--r-- | i386/i386at/conf.c | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/i386/i386at/conf.c b/i386/i386at/conf.c index e718b7d0..179c9db3 100644 --- a/i386/i386at/conf.c +++ b/i386/i386at/conf.c @@ -54,27 +54,6 @@ extern int wtopen(), wtread(), wtwrite(), wtclose(); #define wtname "wt" #endif /* NWT > 0 */ -#include <ul.h> -#if NUL > 0 -extern int ulopen(), uloutput(), ulgetstat(), ulsetstat(), - ulsetinput(); -#define ulname "ul" -#endif /* NUL > 0 */ - -#include <wd.h> -#if NWD > 0 -extern int wdopen(), wdoutput(), wdgetstat(), wdsetstat(), - wdsetinput(); -#define wdname "wd" -#endif /* NWD > 0 */ - -#include <hpp.h> -#if NHPP > 0 -extern int hppopen(), hppoutput(), hppgetstat(), hppsetstat(), - hppsetinput(); -#define hppname "hpp" -#endif /* NHPP > 0 */ - #include <par.h> #if NPAR > 0 extern int paropen(), paroutput(), pargetstat(), parsetstat(), @@ -191,27 +170,6 @@ struct dev_ops dev_name_list[] = nodev }, #endif /* NWT > 0 */ -#if NUL > 0 - { ulname, ulopen, nulldev, nulldev, - uloutput, ulgetstat, ulsetstat, nulldev, - ulsetinput, nulldev, nulldev, 0, - nodev }, -#endif - -#if NWD > 0 - { wdname, wdopen, nulldev, nulldev, - wdoutput, wdgetstat, wdsetstat, nulldev, - wdsetinput, nulldev, nulldev, 0, - nodev }, -#endif - -#if NHPP > 0 - { hppname, hppopen, nulldev, nulldev, - hppoutput, hppgetstat, hppsetstat, nulldev, - hppsetinput, nulldev, nulldev, 0, - nodev }, -#endif - #if NPAR > 0 { parname, paropen, nulldev, nulldev, paroutput, pargetstat, parsetstat, nomap, |