summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2002-09-28 21:38:35 +0000
committerphk <phk@FreeBSD.org>2002-09-28 21:38:35 +0000
commit1265230747afae4fc0491f84f359a659544f01a7 (patch)
tree7356cf230d729393d3a4d749fead91c108248125 /sys
parenta4c01edbf36322e79eaa50b950895f88016834de (diff)
downloadFreeBSD-src-1265230747afae4fc0491f84f359a659544f01a7.zip
FreeBSD-src-1265230747afae4fc0491f84f359a659544f01a7.tar.gz
Move includ of <sys/bus_priate.h> later to get semantic identity of
device_t the same throughout kernel. This is a very fine point of C which fortunatly does not make any difference in normal circumstances but which due to the pervasiveness of device_t in the kernel can make a lint barf a lot.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/subr_bus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c
index fbadf0b..2008aa1 100644
--- a/sys/kern/subr_bus.c
+++ b/sys/kern/subr_bus.c
@@ -29,7 +29,6 @@
#include "opt_bus.h"
#include <sys/param.h>
-#include <sys/bus_private.h>
#include <sys/kernel.h>
#include <sys/kobj.h>
#include <sys/malloc.h>
@@ -39,6 +38,7 @@
#include <sys/rman.h>
#include <sys/sysctl.h>
#include <sys/systm.h>
+#include <sys/bus_private.h>
#include <machine/stdarg.h>
OpenPOWER on IntegriCloud