payloads: Replace all IS_ENABLED(CONFIG_XXX) with CONFIG(XXX)

This patch is a raw application of

 find payloads/ -type f | \
   xargs sed -i -e 's/IS_ENABLED\s*(CONFIG_/CONFIG(/g'

Change-Id: I883b03b189f59b5d998a09a2596b0391a2d5cf33
Signed-off-by: Julius Werner <jwerner@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/31775
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
Julius Werner
2019-03-05 16:55:15 -08:00
committed by Patrick Georgi
parent b431833c12
commit eab2a29c8b
61 changed files with 176 additions and 176 deletions

View File

@ -102,16 +102,16 @@ int console_remove_output_driver(void *function)
void console_init(void)
{
#if IS_ENABLED(CONFIG_LP_VIDEO_CONSOLE)
#if CONFIG(LP_VIDEO_CONSOLE)
video_console_init();
#endif
#if IS_ENABLED(CONFIG_LP_SERIAL_CONSOLE)
#if CONFIG(LP_SERIAL_CONSOLE)
serial_console_init();
#endif
#if IS_ENABLED(CONFIG_LP_PC_KEYBOARD)
#if CONFIG(LP_PC_KEYBOARD)
keyboard_init();
#endif
#if IS_ENABLED(CONFIG_LP_CBMEM_CONSOLE)
#if CONFIG(LP_CBMEM_CONSOLE)
cbmem_console_init();
#endif
}
@ -147,7 +147,7 @@ int puts(const char *s)
int havekey(void)
{
#if IS_ENABLED(CONFIG_LP_USB)
#if CONFIG(LP_USB)
usb_poll();
#endif
struct console_input_driver *in;
@ -164,7 +164,7 @@ int havekey(void)
int getchar(void)
{
while (1) {
#if IS_ENABLED(CONFIG_LP_USB)
#if CONFIG(LP_USB)
usb_poll();
#endif
struct console_input_driver *in;