diff options
author | 2015-11-14 17:27:21 +0000 | |
---|---|---|
committer | 2015-11-14 17:27:21 +0000 | |
commit | 018d6ec80d1bb3a38652ad3e57c63f6a1b2e0ea5 (patch) | |
tree | b7490de51596f1a21a03b4de71a5d9f914a98765 | |
parent | No need to include <net/bpfdesc.h> (diff) | |
download | wireguard-openbsd-018d6ec80d1bb3a38652ad3e57c63f6a1b2e0ea5.tar.xz wireguard-openbsd-018d6ec80d1bb3a38652ad3e57c63f6a1b2e0ea5.zip |
Add missing header found while removing <sys/srp.h> from <sys/param.h>
-rw-r--r-- | sys/dev/usb/ehci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index 71cb15f6542..384f8b72afc 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci.c,v 1.188 2015/11/02 14:55:41 mpi Exp $ */ +/* $OpenBSD: ehci.c,v 1.189 2015/11/14 17:27:21 mpi Exp $ */ /* $NetBSD: ehci.c,v 1.66 2004/06/30 03:11:56 mycroft Exp $ */ /* @@ -65,6 +65,7 @@ #include <sys/timeout.h> #include <sys/pool.h> #include <sys/endian.h> +#include <sys/atomic.h> #include <machine/bus.h> |