summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2021-04-28 11:33:56 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-05-05 08:12:34 +0000
commit32aabf2c093819cab841a03aefac263012f35a3c (patch)
treeeb94e8bc79e967368e2fd83ad6fbd6714e6acb36 /src
parentf28dcbcfc971f7159c853e206933c07f57d3f17c (diff)
downloadcoreboot-32aabf2c093819cab841a03aefac263012f35a3c.tar.gz
coreboot-32aabf2c093819cab841a03aefac263012f35a3c.tar.bz2
coreboot-32aabf2c093819cab841a03aefac263012f35a3c.zip
lib/coreboot_table.c: Remove unnecessary CPP use
Change-Id: Ib93617867b946e208c31275d55d380aab7e51a50 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52729 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/lib/coreboot_table.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c
index cb85a1819a38..9264efb6d248 100644
--- a/src/lib/coreboot_table.c
+++ b/src/lib/coreboot_table.c
@@ -466,12 +466,11 @@ static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
lb_mainboard(head);
/* Record the serial ports and consoles */
-#if CONFIG(CONSOLE_SERIAL)
- uart_fill_lb(head);
-#endif
-#if CONFIG(CONSOLE_USB)
- lb_add_console(LB_TAG_CONSOLE_EHCI, head);
-#endif
+ if (CONFIG(CONSOLE_SERIAL))
+ uart_fill_lb(head);
+
+ if (CONFIG(CONSOLE_USB))
+ lb_add_console(LB_TAG_CONSOLE_EHCI, head);
/* Record our various random string information */
lb_strings(head);