diff options
Diffstat (limited to 'payloads/libpayload/curses/local.h')
-rw-r--r-- | payloads/libpayload/curses/local.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/libpayload/curses/local.h b/payloads/libpayload/curses/local.h index 660f5db581..274c389cb2 100644 --- a/payloads/libpayload/curses/local.h +++ b/payloads/libpayload/curses/local.h @@ -70,13 +70,13 @@ /* Flags used to determine what output methods are available */ -#if IS_ENABLED(CONFIG_LP_VIDEO_CONSOLE) +#if CONFIG(LP_VIDEO_CONSOLE) #define F_ENABLE_CONSOLE 0x01 #else #define F_ENABLE_CONSOLE 0x00 #endif -#if IS_ENABLED(CONFIG_LP_SERIAL_CONSOLE) +#if CONFIG(LP_SERIAL_CONSOLE) #define F_ENABLE_SERIAL 0x02 #else #define F_ENABLE_SERIAL 0x00 |