diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2001-03-14 18:24:11 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2001-03-14 18:24:11 +0000 |
commit | 67fb8bc7476caa3229df86d6ae9ff222803cd0d7 (patch) | |
tree | a7357dce4da3b9ff0b26d3b7225ce246b3a119d2 | |
parent | 1ec7dacb3e39d99538acc2e58b214d6cdb3e5179 (diff) |
ukbd is a valid wscons keyboard. include ukbd.h for wskbdvar.h
-rw-r--r-- | sys/arch/i386/i386/wscons_machdep.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/wscons_machdep.c b/sys/arch/i386/i386/wscons_machdep.c index 21a9a141e0c..8d08713cefe 100644 --- a/sys/arch/i386/i386/wscons_machdep.c +++ b/sys/arch/i386/i386/wscons_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wscons_machdep.c,v 1.4 2001/03/14 06:18:47 millert Exp $ */ +/* $OpenBSD: wscons_machdep.c,v 1.5 2001/03/14 18:24:10 todd Exp $ */ /* * Copyright (c) 2001 Aaron Campbell @@ -72,7 +72,8 @@ #include <dev/ic/pckbcvar.h> #endif #include "pckbd.h" /* for pckbc_machdep_cnattach */ -#if (NPCKBD > 0) +#include "ukbd.h" +#if (NPCKBD > 0) || (NUKBD > 0) #include <dev/wscons/wskbdvar.h> #endif |