diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-08 17:37:06 -0800 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-09 17:29:33 +0100 |
commit | 2f919ec4765e4484d79b866332fa19ec338db5c0 (patch) | |
tree | 1ddb3a7eba06bdd40657c5f63bc8dce322c530a6 /src/lib/halt.c | |
parent | b2d834a93afe129851f9aa7400f3fb2f42be20a4 (diff) |
src/lib: Remove braces for single statements
Fix the following warning detected by checkpatch.pl:
WARNING: braces {} are not necessary for single statement blocks
TEST=Build and run on Galileo Gen2
Change-Id: Ie4b41f6fb75142ddd75103a55e0347ed85e7e873
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18697
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/lib/halt.c')
-rw-r--r-- | src/lib/halt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/halt.c b/src/lib/halt.c index 8482ef9c45..40232c0ba4 100644 --- a/src/lib/halt.c +++ b/src/lib/halt.c @@ -18,7 +18,6 @@ #include <halt.h> void halt(void) { - while (1) { + while (1) hlt(); - } } |