Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/82761?usp=email )
Change subject: console: Fix I2C/SMBus console if it's the only slow one ......................................................................
console: Fix I2C/SMBus console if it's the only slow one
Change-Id: Ie44fdac6904a4467e408882bb8a5e08e6ff73f32 Signed-off-by: Nico Huber nico.h@gmx.de --- M src/include/console/console.h 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/61/82761/1
diff --git a/src/include/console/console.h b/src/include/console/console.h index 7e9a439..8d1a5c5 100644 --- a/src/include/console/console.h +++ b/src/include/console/console.h @@ -72,7 +72,8 @@ #define HAS_ONLY_FAST_CONSOLES !(CONFIG(SPKMODEM) || CONFIG(CONSOLE_QEMU_DEBUGCON) || \ CONFIG(CONSOLE_SERIAL) || CONFIG(CONSOLE_NE2K) || CONFIG(CONSOLE_USB) || \ CONFIG(EM100PRO_SPI_CONSOLE) || CONFIG(CONSOLE_SPI_FLASH) || \ - CONFIG(CONSOLE_SYSTEM76_EC) || CONFIG(CONSOLE_AMD_SIMNOW)) + CONFIG(CONSOLE_SYSTEM76_EC) || CONFIG(CONSOLE_AMD_SIMNOW) || \ + CONFIG(CONSOLE_I2C_SMBUS))
#else static inline int get_log_level(void) { return -1; }