diff options
author | 2015-12-17 10:21:22 +0000 | |
---|---|---|
committer | 2015-12-17 10:21:22 +0000 | |
commit | 81a51dfc51a31b8ceaef82ae041802dd888ba60e (patch) | |
tree | c0dc67eb3bebdecd95fa7d3cd58dbab05e351855 /sys/dev/usb/umass.c | |
parent | Move vcpu register state init to vmd. Allows vmd bootloader to make the (diff) | |
download | wireguard-openbsd-81a51dfc51a31b8ceaef82ae041802dd888ba60e.tar.xz wireguard-openbsd-81a51dfc51a31b8ceaef82ae041802dd888ba60e.zip |
Missing include, spotted by benoit@
Diffstat (limited to 'sys/dev/usb/umass.c')
-rw-r--r-- | sys/dev/usb/umass.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/umass.c b/sys/dev/usb/umass.c index 86fb691f5d2..11c91072c41 100644 --- a/sys/dev/usb/umass.c +++ b/sys/dev/usb/umass.c @@ -1,4 +1,4 @@ -/* $OpenBSD: umass.c,v 1.71 2015/12/16 14:50:26 mpi Exp $ */ +/* $OpenBSD: umass.c,v 1.72 2015/12/17 10:21:22 mpi Exp $ */ /* $NetBSD: umass.c,v 1.116 2004/06/30 05:53:46 mycroft Exp $ */ /* @@ -129,6 +129,7 @@ #include <sys/kernel.h> #include <sys/conf.h> #include <sys/buf.h> +#include <sys/device.h> #include <sys/malloc.h> #include <sys/timeout.h> #undef KASSERT |