diff options
author | 2014-09-21 04:29:42 +0000 | |
---|---|---|
committer | 2014-09-21 04:29:42 +0000 | |
commit | bd8b68c33a3efc22224bfb320b52269a5701a8d8 (patch) | |
tree | 4685c286504403cc291b770cd931e6d7fa0f2023 /sys/dev/isa | |
parent | Make another fast path properly atomic. (diff) | |
download | wireguard-openbsd-bd8b68c33a3efc22224bfb320b52269a5701a8d8.tar.xz wireguard-openbsd-bd8b68c33a3efc22224bfb320b52269a5701a8d8.zip |
Directly include sys/timeout.h so we don't depend on
indirectly including it via dev/ic/pckbcvar.h
Fixes kernel builds without ukbd(4) and pckbd(4).
From Atticus on tech@
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/pcppi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/isa/pcppi.c b/sys/dev/isa/pcppi.c index 761ed89b5d9..c7133c7b686 100644 --- a/sys/dev/isa/pcppi.c +++ b/sys/dev/isa/pcppi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcppi.c,v 1.11 2014/09/14 14:17:25 jsg Exp $ */ +/* $OpenBSD: pcppi.c,v 1.12 2014/09/21 04:29:42 jsg Exp $ */ /* $NetBSD: pcppi.c,v 1.1 1998/04/15 20:26:18 drochner Exp $ */ /* @@ -33,6 +33,7 @@ #include <sys/kernel.h> #include <sys/device.h> #include <sys/errno.h> +#include <sys/timeout.h> #include <machine/bus.h> |