diff options
author | Mark Brown <broonie@kernel.org> | 2022-07-04 19:02:42 +0200 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2022-07-05 12:45:46 +0200 |
commit | e97575533a801bc9b0c690bb7e58f126ede4ad41 (patch) | |
tree | 0e47070e40c3493c864d75cf9b7f269ff7111a5b /arch/arm64/include/asm | |
parent | arm64/sysreg: Standardise naming for DCZID_EL0 field names (diff) | |
download | linux-e97575533a801bc9b0c690bb7e58f126ede4ad41.tar.xz linux-e97575533a801bc9b0c690bb7e58f126ede4ad41.zip |
arm64/mte: Standardise GMID field name definitions
Usually our defines for bitfields in system registers do not include a SYS_
prefix but those for GMID do. In preparation for automatic generation of
defines remove that prefix. No functional change.
Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20220704170302.2609529-9-broonie@kernel.org
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/include/asm')
-rw-r--r-- | arch/arm64/include/asm/sysreg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/include/asm/sysreg.h b/arch/arm64/include/asm/sysreg.h index e62baf910249..cc6a847f8bdd 100644 --- a/arch/arm64/include/asm/sysreg.h +++ b/arch/arm64/include/asm/sysreg.h @@ -1136,8 +1136,8 @@ #define SYS_RGSR_EL1_SEED_MASK 0xffffUL /* GMID_EL1 field definitions */ -#define SYS_GMID_EL1_BS_SHIFT 0 -#define SYS_GMID_EL1_BS_SIZE 4 +#define GMID_EL1_BS_SHIFT 0 +#define GMID_EL1_BS_SIZE 4 /* TFSR{,E0}_EL1 bit definitions */ #define SYS_TFSR_EL1_TF0_SHIFT 0 |