From 53de6cd1c3597f38b69509ea5a34f61c71ca1f5d Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Fri, 9 Jun 2017 09:27:08 -0600 Subject: src/console: add IS_ENABLED() around Kconfig symbol references Some of these can be changed from #if to if(), but that will happen in a follow-on commmit. Change-Id: I5a674cd7a360a0dd040c859ec1f8d760d7c83364 Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/20130 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Arthur Heymans --- src/console/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/console/console.c') diff --git a/src/console/console.c b/src/console/console.c index 877c8dc960..16c041e7b1 100644 --- a/src/console/console.c +++ b/src/console/console.c @@ -80,7 +80,7 @@ void console_write_line(uint8_t *buffer, size_t number_of_bytes) } -#if CONFIG_GDB_STUB && (ENV_ROMSTAGE || ENV_RAMSTAGE) +#if IS_ENABLED(CONFIG_GDB_STUB) && (ENV_ROMSTAGE || ENV_RAMSTAGE) void gdb_hw_init(void) { __gdb_hw_init(); -- cgit v1.2.3