From eab2a29c8bb0fafebd398cf60425dee37df27820 Mon Sep 17 00:00:00 2001 From: Julius Werner Date: Tue, 5 Mar 2019 16:55:15 -0800 Subject: 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/31775 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- payloads/nvramcui/nvramcui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'payloads/nvramcui/nvramcui.c') diff --git a/payloads/nvramcui/nvramcui.c b/payloads/nvramcui/nvramcui.c index 675e00292f..453b9aae43 100644 --- a/payloads/nvramcui/nvramcui.c +++ b/payloads/nvramcui/nvramcui.c @@ -176,7 +176,7 @@ int main(void) int ch, done; int i; - if (IS_ENABLED(CONFIG_LP_USB)) + if (CONFIG(LP_USB)) usb_initialize(); /* coreboot data structures */ -- cgit v1.2.3