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>
This commit is contained in:
Felix Held 2024-02-19 14:31:58 +01:00
parent 97eafb5126
commit 4222b2cf30

View File

@ -60,11 +60,11 @@ struct boot_state {
{ \
.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_)