From 32aabf2c093819cab841a03aefac263012f35a3c Mon Sep 17 00:00:00 2001 From: Arthur Heymans Date: Wed, 28 Apr 2021 11:33:56 +0200 Subject: [PATCH] lib/coreboot_table.c: Remove unnecessary CPP use Change-Id: Ib93617867b946e208c31275d55d380aab7e51a50 Signed-off-by: Arthur Heymans Reviewed-on: https://review.coreboot.org/c/coreboot/+/52729 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons --- src/lib/coreboot_table.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c index cb85a1819a..9264efb6d2 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);