aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/umodem.c
diff options
context:
space:
mode:
authorNick Hibma <n_hibma@FreeBSD.org>1999-10-08 07:38:11 +0000
committerNick Hibma <n_hibma@FreeBSD.org>1999-10-08 07:38:11 +0000
commitcd7a0684fdc5e13768da906856fd79a22f3b150c (patch)
treef0e5b2ac288e07c8b751720f826d994646b961f6 /sys/dev/usb/umodem.c
parenteec117b5ef10a6ee6b35f78a99a6e5e51cfff666 (diff)
downloadsrc-cd7a0684fdc5e13768da906856fd79a22f3b150c.tar.gz
src-cd7a0684fdc5e13768da906856fd79a22f3b150c.zip
Move the include of device.h into the NetBSD specific section.
Submitted by: Guy Helmer <ghelmer@scl.ameslab.gov>
Notes
Notes: svn path=/head/; revision=52009
Diffstat (limited to 'sys/dev/usb/umodem.c')
-rw-r--r--sys/dev/usb/umodem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/umodem.c b/sys/dev/usb/umodem.c
index 5979a83a2228..7d1b56998bd9 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>