]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
arm64/sysreg: Standardise naming for DCZID_EL0 field names
authorMark Brown <broonie@kernel.org>
Mon, 4 Jul 2022 17:02:41 +0000 (18:02 +0100)
committerWill Deacon <will@kernel.org>
Tue, 5 Jul 2022 10:45:45 +0000 (11:45 +0100)
The constants defining field names for DCZID_EL0 do not include the _EL0
that is included as part of our standard naming scheme. In preparation
for automatic generation of the defines add the _EL0 in. No functional
change.

Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20220704170302.2609529-8-broonie@kernel.org
Signed-off-by: Will Deacon <will@kernel.org>
arch/arm64/include/asm/sysreg.h
arch/arm64/kernel/cpufeature.c

index c4293754954ef589fa796cb41f2b2f868d1a5526..e62baf910249dbe3f9fbfc629595a9a015d2e69b 100644 (file)
 #define CTR_EL0_IDC_SHIFT              28
 #define CTR_EL0_DIC_SHIFT              29
 
-#define DCZID_DZP_SHIFT                        4
-#define DCZID_BS_SHIFT                 0
+#define DCZID_EL0_DZP_SHIFT            4
+#define DCZID_EL0_BS_SHIFT             0
 
 #define CPACR_EL1_FPEN_EL1EN   (BIT(20)) /* enable EL1 access */
 #define CPACR_EL1_FPEN_EL0EN   (BIT(21)) /* enable EL0 access, if EL1EN set */
index b7cd50eb6d8a1c205283794b36d5cc599b08ba57..b9c5b11c17c3c7d2dbfbc4ed6022108a25c8527d 100644 (file)
@@ -453,8 +453,8 @@ static const struct arm64_ftr_bits ftr_mvfr2[] = {
 };
 
 static const struct arm64_ftr_bits ftr_dczid[] = {
-       ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, DCZID_DZP_SHIFT, 1, 1),
-       ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, DCZID_BS_SHIFT, 4, 0),
+       ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_EXACT, DCZID_EL0_DZP_SHIFT, 1, 1),
+       ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, DCZID_EL0_BS_SHIFT, 4, 0),
        ARM64_FTR_END,
 };