diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-02-20 19:09:02 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:33 +0200 |
commit | 6ff755dce12b1e0a45cac04548d3826d6061b03f (patch) | |
tree | 2aaff9e6e11b7cd80f362464b4e8568a1fb73bbc /i386/i386at/autoconf.c | |
parent | b40d1da0855a87519b5764415aec6519025a8338 (diff) | |
download | gnumach-6ff755dce12b1e0a45cac04548d3826d6061b03f.tar.gz gnumach-6ff755dce12b1e0a45cac04548d3826d6061b03f.tar.bz2 gnumach-6ff755dce12b1e0a45cac04548d3826d6061b03f.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/pc586.h: Remove file.
* i386/i386at/i82586.h: Likewise.
* i386/i386at/if_pc586.c: Likewise.
* i386/i386at/if_pc586.h: Likewise.
* i386/i386at/autoconf.c: Don't include <pc586.h> anymore and adopt all
users of NPC586 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 | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/i386/i386at/autoconf.c b/i386/i386at/autoconf.c index 583cde85..5efc00a2 100644 --- a/i386/i386at/autoconf.c +++ b/i386/i386at/autoconf.c @@ -59,12 +59,6 @@ extern struct bus_driver eaha_driver; extern int eaha_intr(); #endif /* NEAHA */ -#include <pc586.h> -#if NPC586 > 0 -extern struct bus_driver pcdriver; -extern int pc586intr(); -#endif /* NPC586 */ - #include <ne.h> #if NNE > 0 extern struct bus_driver nedriver; @@ -263,18 +257,6 @@ struct bus_device bus_device_init[] = { { &eaha_driver, "tz", 7, 0, 0x0,0, 0, '?', 0, 0, 7, 0, }, #endif /* NEAHA > 0*/ -#if NPC586 > 0 - /* For MACH Default */ - {&pcdriver, "pc", 0, pc586intr, 0xd0000, 0, 0xd0000, - '?', 0, -1, -1, 0, 0, 0, SPL_FIVE, 9}, - /* For Factory Default */ - {&pcdriver, "pc", 0, pc586intr, 0xc0000, 0, 0xc0000, - '?', 0, -1, -1, 0, 0, 0, SPL_FIVE, 5}, - /* For what Intel Ships */ - {&pcdriver, "pc", 0, pc586intr, 0xf00000, 0, 0xf00000, - '?', 0, -1, -1, 0, 0, 0, SPL_FIVE, 12}, -#endif /* NPC586 > 0 */ - #if NNE > 0 {&nedriver, "ne", 0, neintr, 0x280,0x4000,0xd0000, '?', 0, -1, -1, 0, 0, 0, SPL_SIX, 5}, |