diff options
author | ian <ian@FreeBSD.org> | 2014-02-12 19:59:30 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2014-02-12 19:59:30 +0000 |
commit | 64c07b454d4d71c7c11e63ab33ce3d7126cb6108 (patch) | |
tree | 7d875ca9176f8900a30855e6e5f207a26306cd94 /sys/arm/include | |
parent | d231df0ee2698e42fce6474a0d4168002867b271 (diff) | |
download | FreeBSD-src-64c07b454d4d71c7c11e63ab33ce3d7126cb6108.zip FreeBSD-src-64c07b454d4d71c7c11e63ab33ce3d7126cb6108.tar.gz |
Use the right symbols for determining arm architecture. Include the
necessary header file which has the new FAULT_WNR symbol defined in it.
Diffstat (limited to 'sys/arm/include')
-rw-r--r-- | sys/arm/include/armreg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/arm/include/armreg.h b/sys/arm/include/armreg.h index cf6c417..7cb68d0 100644 --- a/sys/arm/include/armreg.h +++ b/sys/arm/include/armreg.h @@ -404,6 +404,8 @@ #define FAULT_PERM_P 0x0f /* Permission -- Page */ #define FAULT_IMPRECISE 0x400 /* Imprecise exception (XSCALE) */ +#define FAULT_EXTERNAL 0x400 /* External abort (armv6+) */ +#define FAULT_WNR 0x800 /* Write-not-Read access (armv6+) */ /* * Address of the vector page, low and high versions. |