summaryrefslogtreecommitdiff
path: root/arch/arm64/tools/gen-cpucaps.awk
diff options
context:
space:
mode:
authorPrathu Baronia <quic_pbaronia@quicinc.com>2023-05-27 15:38:58 +0300
committerCatalin Marinas <catalin.marinas@arm.com>2023-06-06 19:23:27 +0300
commit56b77ba112d48becc3e41c9fe2b1533ba220b7c3 (patch)
treec2a29e2c4d6b28fc3a28036bc932952e97f7fbdc /arch/arm64/tools/gen-cpucaps.awk
parente34f78b970ea51d17841f6168e50223efc690c76 (diff)
downloadlinux-56b77ba112d48becc3e41c9fe2b1533ba220b7c3.tar.xz
arm64/cpucaps: increase string width to properly format cpucaps.h
The lengthiest capability is `WORKAROUND_TRBE_OVERWRITE_FILL_MODE` and its length is 35 characters so increase the width of left justified strings to 40 and adjust the tab space for `ARM64_NCAPS` accordingly. Now the generated cpucaps.h is properly formatted. Signed-off-by: Prathu Baronia <quic_pbaronia@quicinc.com> Link: https://lore.kernel.org/r/20230527123900.680520-1-quic_pbaronia@quicinc.com Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm64/tools/gen-cpucaps.awk')
-rwxr-xr-xarch/arm64/tools/gen-cpucaps.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/tools/gen-cpucaps.awk b/arch/arm64/tools/gen-cpucaps.awk
index 00c9e72a200a..8525980379d7 100755
--- a/arch/arm64/tools/gen-cpucaps.awk
+++ b/arch/arm64/tools/gen-cpucaps.awk
@@ -24,12 +24,12 @@ BEGIN {
}
/^[vA-Z0-9_]+$/ {
- printf("#define ARM64_%-30s\t%d\n", $0, cap_num++)
+ printf("#define ARM64_%-40s\t%d\n", $0, cap_num++)
next
}
END {
- printf("#define ARM64_NCAPS\t\t\t\t%d\n", cap_num)
+ printf("#define ARM64_NCAPS\t\t\t\t\t%d\n", cap_num)
print ""
print "#endif /* __ASM_CPUCAPS_H */"
}