Remove remnants of support for console on ite, since the ite device

driver is no more.
This commit is contained in:
he 2003-03-09 13:59:56 +00:00
parent 218e798c23
commit 1565f9401d
1 changed files with 3 additions and 17 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.124 2003/02/03 17:09:57 matt Exp $ */ /* $NetBSD: machdep.c,v 1.125 2003/03/09 13:59:56 he Exp $ */
/* /*
* Copyright (C) 1995, 1996 Wolfgang Solfrank. * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -421,15 +421,14 @@ lcsplx(ipl)
#include "akbd.h" #include "akbd.h"
#include "ukbd.h" #include "ukbd.h"
#include "ofb.h" #include "ofb.h"
#include "ite.h"
#include "zstty.h" #include "zstty.h"
void void
cninit() cninit()
{ {
#if (NITE > 0 || NZSTTY > 0) #if (NZSTTY > 0)
struct consdev *cp; struct consdev *cp;
#endif /* (NITE > 0 || NZSTTY > 0) */ #endif /* (NZSTTY > 0) */
int stdout, node; int stdout, node;
char type[16]; char type[16];
@ -449,19 +448,6 @@ cninit()
} }
#endif /* NOFB > 0 */ #endif /* NOFB > 0 */
#if NITE > 0
if (strcmp(type, "display") == 0) {
extern struct consdev consdev_ite;
cp = &consdev_ite;
(*cp->cn_probe)(cp);
(*cp->cn_init)(cp);
cn_tab = cp;
return;
}
#endif
#if NZSTTY > 0 #if NZSTTY > 0
if (strcmp(type, "serial") == 0) { if (strcmp(type, "serial") == 0) {
extern struct consdev consdev_zs; extern struct consdev consdev_zs;