diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2011-09-18 23:24:13 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2011-09-18 23:24:13 +0000 |
commit | 7fbcb0d21f1e3057dc3a3c665ca09626fbed9de4 (patch) | |
tree | 080a1cdbccd097d40568d86dbba136254d947705 /sys/dev/usb/if_wi_usb.c | |
parent | 4d4a5518059e8cde68b6050db93887a2e511b0eb (diff) |
usbdivar.h needs struct timeout. But don't get it indirectly via
sys/kthread.h, use sys/timeout.h explicitly. Noted by Michael
Knudsen.
ok deraadt@ kettenis@ guenther@
Diffstat (limited to 'sys/dev/usb/if_wi_usb.c')
-rw-r--r-- | sys/dev/usb/if_wi_usb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/if_wi_usb.c b/sys/dev/usb/if_wi_usb.c index bd62c1431f9..7c8071980ae 100644 --- a/sys/dev/usb/if_wi_usb.c +++ b/sys/dev/usb/if_wi_usb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi_usb.c,v 1.53 2011/07/03 15:47:17 matthew Exp $ */ +/* $OpenBSD: if_wi_usb.c,v 1.54 2011/09/18 23:24:12 krw Exp $ */ /* * Copyright (c) 2003 Dale Rahn. All rights reserved. @@ -38,6 +38,7 @@ #include <sys/proc.h> #include <sys/socket.h> #include <sys/device.h> +#include <sys/timeout.h> #include <sys/kthread.h> #include <sys/tree.h> |