svn commit: r284449 - head/sys/arm/arm

Bjoern A. Zeeb bz at FreeBSD.org
Tue Jun 16 15:14:40 UTC 2015


Author: bz
Date: Tue Jun 16 15:14:40 2015
New Revision: 284449
URL: https://svnweb.freebsd.org/changeset/base/284449

Log:
  Trying to unbreak arm.LINT by properly putting the conditional include
  for dtrace further down in the include list where it belongs.
  
  Reviewed by:	andrew

Modified:
  head/sys/arm/arm/trap.c

Modified: head/sys/arm/arm/trap.c
==============================================================================
--- head/sys/arm/arm/trap.c	Tue Jun 16 13:56:16 2015	(r284448)
+++ head/sys/arm/arm/trap.c	Tue Jun 16 15:14:40 2015	(r284449)
@@ -78,10 +78,6 @@
  * Created      : 28/11/94
  */
 
-#ifdef KDTRACE_HOOKS
-#include <sys/dtrace_bsd.h>
-#endif
-
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
@@ -109,6 +105,10 @@ __FBSDID("$FreeBSD$");
 #include <sys/kdb.h>
 #endif
 
+#ifdef KDTRACE_HOOKS
+#include <sys/dtrace_bsd.h>
+#endif
+
 extern char fusubailout[];
 
 #ifdef DEBUG


More information about the svn-src-all mailing list