aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/include/asmacros.h
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2017-02-03 11:47:57 +0000
committerAndrew Turner <andrew@FreeBSD.org>2017-02-03 11:47:57 +0000
commitc1a2c9314f67dfcfdaa96d7b2eba81e1061da51f (patch)
tree638527ec913865125680b0688dae4c84b5536d4b /sys/arm/include/asmacros.h
parentaa7dd0fb0e58ee87d66377918fb7327b7d4a5f73 (diff)
downloadsrc-c1a2c9314f67dfcfdaa96d7b2eba81e1061da51f.tar.gz
src-c1a2c9314f67dfcfdaa96d7b2eba81e1061da51f.zip
Remove an old use of _ARM_ARCH_6, we are moving to using the standard
__ARM_ARCH >= 6 spelling. Sponsored by: ABT Systems Ltd
Notes
Notes: svn path=/head/; revision=313145
Diffstat (limited to 'sys/arm/include/asmacros.h')
-rw-r--r--sys/arm/include/asmacros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/include/asmacros.h b/sys/arm/include/asmacros.h
index d7f804fa26de..38d739f9dae3 100644
--- a/sys/arm/include/asmacros.h
+++ b/sys/arm/include/asmacros.h
@@ -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