diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-10 10:53:36 -0800 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-10 22:27:18 +0100 |
commit | 72c60a472b393363722e0c6093f696ee28a7f56a (patch) | |
tree | c9da90286df444c755f47d0b0f224df523c213e1 /src/commonlib/include | |
parent | f339973d6f1e9daae13ae4d0e6a437812b14bbd8 (diff) | |
download | coreboot-72c60a472b393363722e0c6093f696ee28a7f56a.tar.gz coreboot-72c60a472b393363722e0c6093f696ee28a7f56a.tar.bz2 coreboot-72c60a472b393363722e0c6093f696ee28a7f56a.zip |
commonlib: Fix issues with { } and else
Fix the following errors and warning detected by checkpatch.pl:
ERROR: open brace '{' following struct go on the same line
ERROR: else should follow close brace '}'
WARNING: else is not generally useful after a break or return
False positives are detected for the following checkpatch.pl error.
ERROR: that open brace { should be on the previous line
These false positives are in cbfs.c for two function definitions.
TEST=Build and run Galileo Gen2
Change-Id: Ic679ff3a2e1cfc0ed52073c20165e05bf21d76f3
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18750
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/commonlib/include')
-rw-r--r-- | src/commonlib/include/commonlib/coreboot_tables.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/commonlib/include/commonlib/coreboot_tables.h b/src/commonlib/include/commonlib/coreboot_tables.h index 339503ad36ef..f11fad6aa02f 100644 --- a/src/commonlib/include/commonlib/coreboot_tables.h +++ b/src/commonlib/include/commonlib/coreboot_tables.h @@ -77,8 +77,7 @@ static inline struct lb_uint64 pack_lb64(uint64_t value) return result; } -struct lb_header -{ +struct lb_header { uint8_t signature[4]; /* LBIO */ uint32_t header_bytes; uint32_t header_checksum; |