diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-09-27 19:58:39 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-09-27 19:58:39 +0000 |
commit | 7a683eaab815ed37a8ff95c00aafe5fa8ae90254 (patch) | |
tree | e470f0c15c34a581cb4243f141f07856d45bb0b7 /sys/dev/usb | |
parent | eb79f3a06499080f0efa541a7067bc2cfd944ec1 (diff) |
Needs explicit <sys/kthread.h>; fixes build on palm.
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/usbf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/usbf.c b/sys/dev/usb/usbf.c index 8f5eb635e4e..b24f5ace46e 100644 --- a/sys/dev/usb/usbf.c +++ b/sys/dev/usb/usbf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: usbf.c,v 1.13 2011/09/18 23:24:12 krw Exp $ */ +/* $OpenBSD: usbf.c,v 1.14 2011/09/27 19:58:38 miod Exp $ */ /* * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org> @@ -52,6 +52,7 @@ #include <sys/param.h> #include <sys/device.h> +#include <sys/kthread.h> #include <sys/timeout.h> #include <sys/malloc.h> #include <sys/systm.h> |