summaryrefslogtreecommitdiff
path: root/sys/dev/usb/xhci.c
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-12-19 22:45:00 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-12-19 22:45:00 +0000
commit88183c175a3a1ea97d7a2129f42fe9c7a3ef99d6 (patch)
tree3c6584c4f92faaac23cf587c56e739c225ecf976 /sys/dev/usb/xhci.c
parent5723639e3ccaa5b214ebe31dcdce31ba1cbf6bef (diff)
Use <sys/endian.h> instead of <machine/endian.h>
ok dlg@ mpi@ bcook@ millert@ miod@
Diffstat (limited to 'sys/dev/usb/xhci.c')
-rw-r--r--sys/dev/usb/xhci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/xhci.c b/sys/dev/usb/xhci.c
index 4928be70f30..f247fdc49b6 100644
--- a/sys/dev/usb/xhci.c
+++ b/sys/dev/usb/xhci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xhci.c,v 1.46 2014/12/15 17:10:44 mpi Exp $ */
+/* $OpenBSD: xhci.c,v 1.47 2014/12/19 22:44:59 guenther Exp $ */
/*
* Copyright (c) 2014 Martin Pieuchot
@@ -24,9 +24,9 @@
#include <sys/queue.h>
#include <sys/timeout.h>
#include <sys/pool.h>
+#include <sys/endian.h>
#include <machine/bus.h>
-#include <machine/endian.h>
#include <dev/usb/usb.h>
#include <dev/usb/usbdi.h>