diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | i386/bogus/evc.h | 1 | ||||
-rw-r--r-- | i386/i386at/kd.c | 8 |
3 files changed, 6 insertions, 9 deletions
@@ -4,6 +4,12 @@ `DEVELOPMENT' for details. Partly based on suggestions by Gianluca Guida <glguida@gmail.com>. + * i386/bogus/evc.h: Remove file. + * i386/i386at/kd.c: Don't include <evc.h> anymore and adopt all users + of NEVC as if it were always defined to `0'. + (evc1init): Remove definition and adopt all users as if it were always + defined to `FALSE'. + * i386/bogus/nscsi.h: Remove file. * i386/i386at/model_dep.c: Don't include <nscsi.h> anymore and adopt all users of NSCSI as if it were always defined to `0'. diff --git a/i386/bogus/evc.h b/i386/bogus/evc.h deleted file mode 100644 index 6bb31d1..0000000 --- a/i386/bogus/evc.h +++ /dev/null @@ -1 +0,0 @@ -#define NEVC 0 diff --git a/i386/i386at/kd.c b/i386/i386at/kd.c index 6a7eb44..f2e8f15 100644 --- a/i386/i386at/kd.c +++ b/i386/i386at/kd.c @@ -101,13 +101,6 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define blit_init() /* nothing */ #endif -#include <evc.h> -#if NEVC > 0 -int evc1init(); -#else -#define evc1init() FALSE -#endif - #define DEBUG 1 /* export feep() */ #define DEFAULT -1 /* see kd_atoi */ @@ -1207,7 +1200,6 @@ kdinit() * board specific initialization: set up globals and kd_dxxx * pointers, and synch displayed cursor with logical cursor. */ - if (!evc1init()) if (blit_present()) blit_init(); else |