Commit f43ff286 authored by Mark Brown's avatar Mark Brown Committed by Will Deacon

arm64/sysreg: Allow leading blanks on comments in sysreg file

Currently we only accept comments where the # is placed at the start of a
line, allow leading blanks so we can format comments inside definitions in
a more pleasing manner.
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20220704170302.2609529-4-broonie@kernel.orgSigned-off-by: default avatarWill Deacon <will@kernel.org>
parent 9105a295
...@@ -88,7 +88,7 @@ END { ...@@ -88,7 +88,7 @@ END {
# skip blank lines and comment lines # skip blank lines and comment lines
/^$/ { next } /^$/ { next }
/^#/ { next } /^[\t ]*#/ { next }
/^SysregFields/ { /^SysregFields/ {
change_block("SysregFields", "None", "SysregFields") change_block("SysregFields", "None", "SysregFields")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment