diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2006-09-27 13:02:48 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2006-09-27 13:02:48 +0000 |
commit | bf892e9aa654f770f43d0b73b184b8a18b409fb4 (patch) | |
tree | 3b5af15adae2189e5b142df7c31b67faa9383b91 | |
parent | 964773afa78460b861fae8c63ab79f81513f8ec9 (diff) |
Add missing <sys/device.h>.
-rw-r--r-- | sys/dev/usb/uow.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/uow.c b/sys/dev/usb/uow.c index 35f71f0e516..9b3fce3df0c 100644 --- a/sys/dev/usb/uow.c +++ b/sys/dev/usb/uow.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uow.c,v 1.1 2006/09/27 08:54:44 grange Exp $ */ +/* $OpenBSD: uow.c,v 1.2 2006/09/27 13:02:47 grange Exp $ */ /* * Copyright (c) 2006 Alexander Yurchenko <grange@openbsd.org> @@ -22,6 +22,7 @@ #include <sys/param.h> #include <sys/systm.h> +#include <sys/device.h> #include <sys/kernel.h> #include <sys/proc.h> |