Date: Sat, 20 Dec 2008 17:55:37 +0000 (UTC) From: Sam Leffler <sam@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r186362 - head/sys/dev/usb Message-ID: <200812201755.mBKHtbQF010371@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812201755.mBKHtbQF010371>