diff options
author | Alejandro Tafalla | 2022-06-09 22:42:18 +0200 |
---|---|---|
committer | Catalin Marinas | 2022-06-10 16:23:48 +0100 |
commit | ce253b8573ce3de1278513395f07118650a49e39 (patch) | |
tree | 77e135cd702901604945a0957b352c3790f1f2fe /arch | |
parent | f539316fe8106b4f4b4e95c1e70a31b545523b03 (diff) |
arm64/sysreg: Fix typo in Enum element regex
In the awk script, there was a typo with the comparison operator when
checking if the matched pattern is inside an Enum block.
This prevented the generation of the whole sysreg-defs.h header.
Fixes: 66847e0618d7 ("arm64: Add sysreg header generation scripting")
Signed-off-by: Alejandro Tafalla <atafalla@dnyon.com>
Reviewed-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20220609204220.12112-1-atafalla@dnyon.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch')
-rwxr-xr-x | arch/arm64/tools/gen-sysreg.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/tools/gen-sysreg.awk b/arch/arm64/tools/gen-sysreg.awk index 89bfb74e28de..5c55509eb43f 100755 --- a/arch/arm64/tools/gen-sysreg.awk +++ b/arch/arm64/tools/gen-sysreg.awk @@ -253,7 +253,7 @@ END { next } -/0b[01]+/ && block = "Enum" { +/0b[01]+/ && block == "Enum" { expect_fields(2) val = $1 name = $2 |