summaryrefslogtreecommitdiff
path: root/i386/i386at/kd.c
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2006-02-20 23:15:34 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:26:35 +0200
commit5336c3ebb0f9e0c367f3a2339345efe1a71b3c2b (patch)
treec588ac96e9d0c444bb1b34157ed4a05ed7bce8ab /i386/i386at/kd.c
parente8c63bf3f3b03764429f7746723ebba462e905fc (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/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/kd.c')
-rw-r--r--i386/i386at/kd.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/i386/i386at/kd.c b/i386/i386at/kd.c
index f2e8f15..cf03bc2 100644
--- a/i386/i386at/kd.c
+++ b/i386/i386at/kd.c
@@ -93,14 +93,6 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <i386at/kdsoft.h>
#include <cons.h>
-#include <blit.h>
-#if NBLIT > 0
-#include <i386at/blitvar.h>
-#else
-#define blit_present() FALSE
-#define blit_init() /* nothing */
-#endif
-
#define DEBUG 1 /* export feep() */
#define DEFAULT -1 /* see kd_atoi */
@@ -1200,10 +1192,7 @@ kdinit()
* board specific initialization: set up globals and kd_dxxx
* pointers, and synch displayed cursor with logical cursor.
*/
- if (blit_present())
- blit_init();
- else
- kd_xga_init();
+ kd_xga_init();
/* get rid of any garbage in output buffer */
if (inb(K_STATUS) & K_OBUF_FUL)