diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-07 12:06:44 -0800 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-10 22:28:14 +0100 |
commit | 86f60a9c8f218fabc784cbed6c1819b7effec31c (patch) | |
tree | 52573f3c9370b910c9f156382f4b59627929d1c8 | |
parent | 36d5b41e621207ffe722bcb98b497ec2c9b35d5a (diff) |
src/include: Add space before (
Fix the following error detected by checkpatch.py:
ERROR: space required before the open parenthesis '('
TEST=Build and run on Galileo Gen2
Change-Id: I6969e63f750f327afff1a0efa1aab56d477af0df
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18645
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r-- | src/include/bootstate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/bootstate.h b/src/include/bootstate.h index 26598f7078..efe72322d3 100644 --- a/src/include/bootstate.h +++ b/src/include/bootstate.h @@ -150,7 +150,7 @@ struct boot_state_callback { INIT_BOOT_STATE_CALLBACK_DEBUG(bscb_) \ bscb_->callback = func_; \ bscb_->arg = arg_ \ - } while(0) + } while (0) /* The following 2 functions schedule a callback to be called on entry/exit * to a given state. Note that there are no ordering guarantees between the |