svn commit: r224552 - head/sys/powerpc/mpc85xx
Marcel Moolenaar
marcel at FreeBSD.org
Sun Jul 31 18:30:38 UTC 2011
Author: marcel
Date: Sun Jul 31 18:30:38 2011
New Revision: 224552
URL: http://svn.freebsd.org/changeset/base/224552
Log:
Fix r222813: we need to include sys/cpuset.h. because the PIC interface
uses cpuset_t. While here, fix the redundant inclusion of sys/bus.h and
order the includes.
Approved by: re (blanket)
Modified:
head/sys/powerpc/mpc85xx/atpic.c
Modified: head/sys/powerpc/mpc85xx/atpic.c
==============================================================================
--- head/sys/powerpc/mpc85xx/atpic.c Sun Jul 31 18:26:47 2011 (r224551)
+++ head/sys/powerpc/mpc85xx/atpic.c Sun Jul 31 18:30:38 2011 (r224552)
@@ -28,11 +28,11 @@ __FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/bus.h>
+#include <sys/cpuset.h>
#include <sys/kernel.h>
#include <sys/module.h>
-#include <sys/bus.h>
#include <sys/rman.h>
-#include <sys/bus.h>
#include <machine/bus.h>
#include <machine/intr_machdep.h>
More information about the svn-src-head
mailing list