diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-10-08 07:38:11 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-10-08 07:38:11 +0000 |
commit | d06b076544a72b79acd440111719934881890aba (patch) | |
tree | 1814bbd95c383ff794ad94edc4871c4e5e6ed6f4 /sys/dev/usb | |
parent | d2c2fe62f06b73bc578ee22f5b7b25a1111842f4 (diff) | |
download | FreeBSD-src-d06b076544a72b79acd440111719934881890aba.zip FreeBSD-src-d06b076544a72b79acd440111719934881890aba.tar.gz |
Move the include of device.h into the NetBSD specific section.
Submitted by: Guy Helmer <ghelmer@scl.ameslab.gov>
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/umodem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/umodem.c b/sys/dev/usb/umodem.c index 5979a83..7d1b569 100644 --- a/sys/dev/usb/umodem.c +++ b/sys/dev/usb/umodem.c @@ -44,6 +44,7 @@ #include <sys/malloc.h> #if defined(__NetBSD__) #include <sys/ioctl.h> +#include <sys/device.h> #elif defined(__FreeBSD__) #include <sys/module.h> #include <sys/bus.h> @@ -55,7 +56,6 @@ #include <sys/select.h> #include <sys/proc.h> #include <sys/vnode.h> -#include <sys/device.h> #include <sys/poll.h> #include <dev/usb/usb.h> |