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:
committed by
Patrick Georgi
parent
b431833c12
commit
eab2a29c8b
@@ -31,27 +31,27 @@
|
||||
#include <libpayload.h>
|
||||
#include <video_console.h>
|
||||
|
||||
#if IS_ENABLED(CONFIG_LP_GEODELX_VIDEO_CONSOLE)
|
||||
#if CONFIG(LP_GEODELX_VIDEO_CONSOLE)
|
||||
extern struct video_console geodelx_video_console;
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_LP_COREBOOT_VIDEO_CONSOLE)
|
||||
#if CONFIG(LP_COREBOOT_VIDEO_CONSOLE)
|
||||
extern struct video_console coreboot_video_console;
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_LP_VGA_VIDEO_CONSOLE)
|
||||
#if CONFIG(LP_VGA_VIDEO_CONSOLE)
|
||||
extern struct video_console vga_video_console;
|
||||
#endif
|
||||
|
||||
static struct video_console *console_list[] =
|
||||
{
|
||||
#if IS_ENABLED(CONFIG_LP_GEODELX_VIDEO_CONSOLE)
|
||||
#if CONFIG(LP_GEODELX_VIDEO_CONSOLE)
|
||||
&geodelx_video_console,
|
||||
#endif
|
||||
#if IS_ENABLED(CONFIG_LP_COREBOOT_VIDEO_CONSOLE)
|
||||
#if CONFIG(LP_COREBOOT_VIDEO_CONSOLE)
|
||||
&coreboot_video_console,
|
||||
#endif
|
||||
#if IS_ENABLED(CONFIG_LP_VGA_VIDEO_CONSOLE)
|
||||
#if CONFIG(LP_VGA_VIDEO_CONSOLE)
|
||||
&vga_video_console,
|
||||
#endif
|
||||
};
|
||||
|
Reference in New Issue
Block a user