diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-04-17 17:49:59 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-04-17 17:49:59 +0000 |
commit | 8a423b57629a2c978995ca42330394465e786d5d (patch) | |
tree | b2eef563f7b13dfb144c196b727be1cae9daa169 /sys/dev | |
parent | 3a63168811bb8716def8e905aa8a58647f79b8ec (diff) |
uvm_extern.h not uvm.h
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/udl.c | 6 |
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> |