diff options
author | 2014-10-31 10:29:33 +0000 | |
---|---|---|
committer | 2014-10-31 10:29:33 +0000 | |
commit | 94fe76385b0502a4b3c1adf11cc7da83add47e68 (patch) | |
tree | ba3f1696cb0a3ba7683ec51e13d437191f8ee4c9 | |
parent | remove unused and uneeded includes under NCY_ISA > 0 and NCY_PCI > 0 (diff) | |
download | wireguard-openbsd-94fe76385b0502a4b3c1adf11cc7da83add47e68.tar.xz wireguard-openbsd-94fe76385b0502a4b3c1adf11cc7da83add47e68.zip |
remove a duplicate pckbdvar.h include under NGSCKBD > 0
gsckbd was removed back in 2008 so this was never defined.
-rw-r--r-- | sys/arch/hppa/gsc/gsckbc.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/arch/hppa/gsc/gsckbc.c b/sys/arch/hppa/gsc/gsckbc.c index 96a3c4b8429..b8eff13e8a8 100644 --- a/sys/arch/hppa/gsc/gsckbc.c +++ b/sys/arch/hppa/gsc/gsckbc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gsckbc.c,v 1.17 2013/05/23 18:29:51 tobias Exp $ */ +/* $OpenBSD: gsckbc.c,v 1.18 2014/10/31 10:29:33 jsg Exp $ */ /* * Copyright (c) 2003, Miodrag Vallat. * All rights reserved. @@ -69,6 +69,8 @@ * they are driven by a custom chip not 8042-compatible. */ +#include "pckbd.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/device.h> @@ -111,11 +113,6 @@ struct cfdriver gsckbc_cd = { void gsckbc_intr_establish(struct pckbc_softc *, pckbc_slot_t); -#include "pckbd.h" -#if (NGSCKBD > 0) -#include <dev/pckbc/pckbdvar.h> -#endif - /* descriptor for one device command */ struct pckbc_devcmd { TAILQ_ENTRY(pckbc_devcmd) next; |