summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2013-04-17 17:49:58 +0000
committertedu <tedu@openbsd.org>2013-04-17 17:49:58 +0000
commit9448a44637cc6031afef4643e28264cf861fa18a (patch)
tree0aca92ab20b644e78d36273a80c9ffe078191615
parentdo not permanently avoid the BRKSIZ gap in the heap for mmap. after some (diff)
downloadwireguard-openbsd-9448a44637cc6031afef4643e28264cf861fa18a.tar.xz
wireguard-openbsd-9448a44637cc6031afef4643e28264cf861fa18a.zip
uvm_extern.h not uvm.h
-rw-r--r--sys/dev/usb/udl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/usb/udl.c b/sys/dev/usb/udl.c
index a8a966e3e71..da287bafa99 100644
--- a/sys/dev/usb/udl.c
+++ b/sys/dev/usb/udl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: udl.c,v 1.73 2013/04/15 09:23:02 mglocker Exp $ */
+/* $OpenBSD: udl.c,v 1.74 2013/04/17 17:49:58 tedu Exp $ */
/*
* Copyright (c) 2009 Marcus Glocker <mglocker@openbsd.org>
@@ -32,7 +32,9 @@
#include <sys/device.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
-#include <uvm/uvm.h>
+#include <sys/systm.h>
+
+#include <uvm/uvm_extern.h>
#include <machine/bus.h>