summaryrefslogtreecommitdiff
path: root/i386/i386at/autoconf.c
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2006-02-20 19:25:22 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:26:33 +0200
commitc8075f5570ee013830075e74d2bc06bb52f88194 (patch)
tree7bae16b5cb515b8ef90f6c771c07a9fd87866a6f /i386/i386at/autoconf.c
parent5b16c90c49b899ae62674c352514077a0a6afa2b (diff)
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/autoconf.c')
-rw-r--r--i386/i386at/autoconf.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/i386/i386at/autoconf.c b/i386/i386at/autoconf.c
index 50a0e6f..caf4bd5 100644
--- a/i386/i386at/autoconf.c
+++ b/i386/i386at/autoconf.c
@@ -59,24 +59,6 @@ extern struct bus_driver eaha_driver;
extern int eaha_intr();
#endif /* NEAHA */
-#include <ul.h>
-#if NUL > 0
-extern struct bus_driver uldriver;
-extern int ulintr();
-#endif
-
-#include <wd.h>
-#if NWD > 0
-extern struct bus_driver wddriver;
-extern int wdintr();
-#endif
-
-#include <hpp.h>
-#if NHPP > 0
-extern struct bus_driver hppdriver;
-extern int hppintr();
-#endif
-
#include <com.h>
#if NCOM > 0
extern struct bus_driver comdriver;
@@ -238,21 +220,6 @@ struct bus_device bus_device_init[] = {
{ &eaha_driver, "tz", 6, 0, 0x0,0, 0, '?', 0, 0, 6, 0, },
{ &eaha_driver, "tz", 7, 0, 0x0,0, 0, '?', 0, 0, 7, 0, },
#endif /* NEAHA > 0*/
-
-#if NUL > 0
- {&uldriver, "ul", 0, ulintr, 0, 0, 0, '?', 0, -1, -1, 0, 0, 0, SPL_SIX, 0},
- {&uldriver, "ul", 1, ulintr, 0, 0, 0, '?', 0, -1, -1, 0, 0, 0, SPL_SIX, 0},
-#endif
-
-#if NWD > 0
- {&wddriver, "wd", 0, wdintr, 0, 0, 0, '?', 0, -1, -1, 0, 0, 0, SPL_SIX, 9},
- {&wddriver, "wd", 1, wdintr, 0, 0, 0, '?', 0, -1, -1, 0, 0, 0, SPL_SIX, 15},
-#endif
-
-#if NHPP > 0
- {&hppdriver, "hpp", 0, hppintr, 0, 0, 0, '?', 0, -1, -1, 0, 0, 0, SPL_SIX, 0},
- {&hppdriver, "hpp", 1, hppintr, 0, 0, 0, '?', 0, -1, -1, 0, 0, 0, SPL_SIX, 0},
-#endif
#endif /* ! LINUX_DEV */
#if NCOM > 0