diff options
author | Yuriy Kolerov <yuriy.kolerov@synopsys.com> | 2017-01-31 14:45:21 +0300 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2017-02-06 09:37:57 -0800 |
commit | e98a7bf0b094dea1ceed3a4d52584dcd59af0980 (patch) | |
tree | dcfb53cf1a28c03b9453c206d9ab638ea8e72c4c /arch/arc/include | |
parent | cf16bf7779a68bc572c57ab0cb40054e1754223a (diff) | |
download | linux-e98a7bf0b094dea1ceed3a4d52584dcd59af0980.tar.gz linux-e98a7bf0b094dea1ceed3a4d52584dcd59af0980.tar.bz2 linux-e98a7bf0b094dea1ceed3a4d52584dcd59af0980.zip |
ARCv2: intc: Use ARC_REG_STATUS32 for addressing STATUS32 reg
It is better to use it instead of magic numbers.
Signed-off-by: Yuriy Kolerov <yuriy.kolerov@synopsys.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/include')
-rw-r--r-- | arch/arc/include/asm/arcregs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arc/include/asm/arcregs.h b/arch/arc/include/asm/arcregs.h index f659942744de..ba8e802dba80 100644 --- a/arch/arc/include/asm/arcregs.h +++ b/arch/arc/include/asm/arcregs.h @@ -38,6 +38,9 @@ #define ARC_REG_CLUSTER_BCR 0xcf #define ARC_REG_AUX_ICCM 0x208 /* ICCM Base Addr (ARCv2) */ +/* Common for ARCompact and ARCv2 status register */ +#define ARC_REG_STATUS32 0x0A + /* status32 Bits Positions */ #define STATUS_AE_BIT 5 /* Exception active */ #define STATUS_DE_BIT 6 /* PC is in delay slot */ |