svn commit: r186362 - head/sys/dev/usb

Sam Leffler sam at FreeBSD.org
Sat Dec 20 17:55:37 UTC 2008


Author: sam
Date: Sat Dec 20 17:55:37 2008
New Revision: 186362
URL: http://svn.freebsd.org/changeset/base/186362

Log:
  o add sys/endian.h now required by ehcivar.h
  o reorder a couple of include's to make this consistent with pci code

Modified:
  head/sys/dev/usb/ehci_mbus.c

Modified: head/sys/dev/usb/ehci_mbus.c
==============================================================================
--- head/sys/dev/usb/ehci_mbus.c	Sat Dec 20 17:31:57 2008	(r186361)
+++ head/sys/dev/usb/ehci_mbus.c	Sat Dec 20 17:55:37 2008	(r186362)
@@ -47,8 +47,10 @@ __FBSDID("$FreeBSD$");
 #include <sys/bus.h>
 #include <sys/queue.h>
 #include <sys/lockmgr.h>
-#include <machine/bus.h>
 #include <sys/rman.h>
+#include <sys/endian.h>
+
+#include <machine/bus.h>
 #include <machine/resource.h>
 
 #include <dev/usb/usb.h>


More information about the svn-src-head mailing list