Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/80635?usp=email )
Change subject: lib/hardwaremain: align '' in multi-line macro ......................................................................
lib/hardwaremain: align '' in multi-line macro
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I5967cebad3ad52b5cbc7babc0c808039d7da5227 Reviewed-on: https://review.coreboot.org/c/coreboot/+/80635 Reviewed-by: Felix Singer service+coreboot-gerrit@felixsinger.de Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/lib/hardwaremain.c 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Felix Singer: Looks good to me, approved
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c index cee48ab..7badfbc 100644 --- a/src/lib/hardwaremain.c +++ b/src/lib/hardwaremain.c @@ -60,11 +60,11 @@ { \ .name = #state_, \ .id = state_, \ - .post_code = POSTCODE_ ## state_, \ + .post_code = POSTCODE_ ## state_, \ .phases = { { NULL, 0 }, { NULL, 0 } }, \ .run_state = run_func_, \ .arg = NULL, \ - .complete = false, \ + .complete = false, \ } #define BS_INIT_ENTRY(state_, run_func_) \ [state_] = BS_INIT(state_, run_func_)