arm32_sysreg.py: shorten lines to <= 79 characters
pycodestyle v2.4.0 complains:
$ pycodestyle scripts/arm32_sysreg.py
scripts/arm32_sysreg.py:72:80: E501 line too long (80 > 79 characters)
scripts/arm32_sysreg.py:99:80: E501 line too long (80 > 79 characters)
Break those two lines before the 79 character limit.
Fixes: 4486d5866e238 ("libutee: add headers for user-space to access sysregs")
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
diff --git a/scripts/arm32_sysreg.py b/scripts/arm32_sysreg.py
index 0852471..51e51cc 100755
--- a/scripts/arm32_sysreg.py
+++ b/scripts/arm32_sysreg.py
@@ -69,7 +69,8 @@
print('')
if len(descr):
print('/* ' + descr + ' */')
- print('static inline __noprof uint64_t read_' + reg_name.lower() + '(void)')
+ print('static inline __noprof uint64_t read_' + reg_name.lower() +
+ '(void)')
print('{')
print('\tuint64_t v;')
print('')
@@ -96,7 +97,8 @@
print('')
if len(descr):
print('/* ' + descr + ' */')
- print('static inline __noprof uint32_t read_' + reg_name.lower() + '(void)')
+ print('static inline __noprof uint32_t read_' + reg_name.lower() +
+ '(void)')
print('{')
print('\tuint32_t v;')
print('')