From c9b65eec06793dfaec3995f5cfe7ae8506c1a472 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Tue, 7 Mar 2017 12:06:44 -0800 Subject: [PATCH] UPSTREAM: 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: Ia1e107546eb92ada8d1e495aa24166133bb03686 Signed-off-by: Patrick Georgi Original-Commit-Id: 86f60a9c8f218fabc784cbed6c1819b7effec31c Original-Change-Id: I6969e63f750f327afff1a0efa1aab56d477af0df Original-Signed-off-by: Lee Leahy Original-Reviewed-on: https://review.coreboot.org/18645 Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Aaron Durbin Reviewed-on: https://chromium-review.googlesource.com/453372 --- src/include/bootstate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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