svn commit: r313145 - head/sys/arm/include

Andrew Turner andrew at FreeBSD.org
Fri Feb 3 11:47:58 UTC 2017


Author: andrew
Date: Fri Feb  3 11:47:57 2017
New Revision: 313145
URL: https://svnweb.freebsd.org/changeset/base/313145

Log:
  Remove an old use of _ARM_ARCH_6, we are moving to using the standard
  __ARM_ARCH >= 6 spelling.
  
  Sponsored by:	ABT Systems Ltd

Modified:
  head/sys/arm/include/asmacros.h

Modified: head/sys/arm/include/asmacros.h
==============================================================================
--- head/sys/arm/include/asmacros.h	Fri Feb  3 11:18:34 2017	(r313144)
+++ head/sys/arm/include/asmacros.h	Fri Feb  3 11:47:57 2017	(r313145)
@@ -35,7 +35,7 @@
 
 #ifdef LOCORE
 
-#ifdef _ARM_ARCH_6
+#if __ARM_ARCH >= 6
 #define GET_CURTHREAD_PTR(tmp) \
     	mrc	p15, 0, tmp, c13, c0, 4
 #else


More information about the svn-src-head mailing list