diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-02-20 19:29:00 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:33 +0200 |
commit | 886c5cc034a87a2123cee87aa8ea757b096c8755 (patch) | |
tree | 908dccaa14f9fc5e18cb1dfdc83021907ac20f54 /i386/i386at/autoconf.c | |
parent | c8075f5570ee013830075e74d2bc06bb52f88194 (diff) | |
download | gnumach-886c5cc034a87a2123cee87aa8ea757b096c8755.tar.gz gnumach-886c5cc034a87a2123cee87aa8ea757b096c8755.tar.bz2 gnumach-886c5cc034a87a2123cee87aa8ea757b096c8755.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/wt.h: Remove file.
* i386/i386at/autoconf.c: Don't include <wt.h> anymore and adopt all
users of NWT as if it were always defined to `0'.
* i386/i386at/conf.c: Likewise.
Diffstat (limited to 'i386/i386at/autoconf.c')
-rw-r--r-- | i386/i386at/autoconf.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/i386/i386at/autoconf.c b/i386/i386at/autoconf.c index caf4bd54..b8771e8c 100644 --- a/i386/i386at/autoconf.c +++ b/i386/i386at/autoconf.c @@ -71,12 +71,6 @@ extern struct bus_driver lprdriver; extern int lprintr(); #endif /* NLPR */ -#include <wt.h> -#if NWT > 0 -extern struct bus_driver wtdriver; -extern int wtintr(); -#endif /* NWT */ - struct bus_ctlr bus_master_init[] = { /* driver name unit intr address len phys_address @@ -240,15 +234,6 @@ struct bus_device bus_device_init[] = { {&lprdriver, "lpr", 0, lprintr, 0x3bc, 3, 0x3bc, '?', 0, -1, -1, 0, 0, 0, SPL_TTY, 7}, #endif /* NLPR > 0 */ - -#if NWT > 0 - {&wtdriver, "wt", 0, wtintr, 0x300, 2, 0x300, - '?', 0, -1, -1, 0, 0, 0, SPL_FIVE, 5}, - {&wtdriver, "wt", 0, wtintr, 0x288, 2, 0x288, - '?', 0, -1, -1, 0, 0, 0, SPL_FIVE, 5}, - {&wtdriver, "wt", 0, wtintr, 0x388, 2, 0x388, - '?', 0, -1, -1, 0, 0, 0, SPL_FIVE, 5}, -#endif /* NWT > 0 */ #endif /* ! LINUX_DEV */ 0 |