diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-02-20 23:15:34 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:35 +0200 |
commit | 5336c3ebb0f9e0c367f3a2339345efe1a71b3c2b (patch) | |
tree | c588ac96e9d0c444bb1b34157ed4a05ed7bce8ab /i386/i386at/conf.c | |
parent | e8c63bf3f3b03764429f7746723ebba462e905fc (diff) | |
download | gnumach-5336c3ebb0f9e0c367f3a2339345efe1a71b3c2b.tar.gz gnumach-5336c3ebb0f9e0c367f3a2339345efe1a71b3c2b.tar.bz2 gnumach-5336c3ebb0f9e0c367f3a2339345efe1a71b3c2b.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/blit.h: Remove file.
* i386/i386at/blit.c: Likewise.
* i386/i386at/blitreg.h: Likewise.
* i386/i386at/blituser.h: Likewise.
* i386/i386at/blitvar.h: Likewise.
* i386/i386at/conf.c: Don't include <blit.h> anymore and adopt all
users of NBLIT as if it were always defined to `0'.
* i386/i386at/kd.c: Likewise.
(blit_init): Remove definition.
(blit_present): Likewise and adopt all users as if it were always
defined to `FALSE'.
* i386/Makefile.in (i386at-files): Remove `blit.c'.
Diffstat (limited to 'i386/i386at/conf.c')
-rw-r--r-- | i386/i386at/conf.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/i386/i386at/conf.c b/i386/i386at/conf.c index 2e62ca06..f36fcc5a 100644 --- a/i386/i386at/conf.c +++ b/i386/i386at/conf.c @@ -69,16 +69,6 @@ extern int lprgetstat(), lprsetstat(), lprportdeath(); #define lprname "lpr" #endif /* NLPR > 0 */ -#include <blit.h> -#if NBLIT > 0 -extern int blitopen(), blitclose(), blit_get_stat(); -extern vm_offset_t blitmmap(); -#define blitname "blit" - -extern int mouseinit(), mouseopen(), mouseclose(); -extern int mouseioctl(), mouseselect(), mouseread(); -#endif - extern int kbdopen(), kbdclose(), kbdread(); extern int kbdgetstat(), kbdsetstat(); #define kbdname "kbd" @@ -151,13 +141,6 @@ struct dev_ops dev_name_list[] = nodev }, #endif -#if NBLIT > 0 - { blitname, blitopen, blitclose, nodev, - nodev, blit_get_stat, nodev, blitmmap, - nodev, nodev, nodev, 0, - nodev }, -#endif - { mousename, mouseopen, mouseclose, mouseread, nodev, mousegetstat, nulldev, nomap, nodev, nulldev, nulldev, 0, |