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
@@ -563,7 +563,7 @@ set_address (hci_t *controller, usb_speed speed, int hubport, int hubaddr)
|
||||
break;
|
||||
case hid_device:
|
||||
usb_debug ("HID\n");
|
||||
#if IS_ENABLED(CONFIG_LP_USB_HID)
|
||||
#if CONFIG(LP_USB_HID)
|
||||
dev->init = usb_hid_init;
|
||||
return dev->address;
|
||||
#else
|
||||
@@ -581,7 +581,7 @@ set_address (hci_t *controller, usb_speed speed, int hubport, int hubaddr)
|
||||
break;
|
||||
case msc_device:
|
||||
usb_debug ("MSC\n");
|
||||
#if IS_ENABLED(CONFIG_LP_USB_MSC)
|
||||
#if CONFIG(LP_USB_MSC)
|
||||
dev->init = usb_msc_init;
|
||||
return dev->address;
|
||||
#else
|
||||
@@ -590,7 +590,7 @@ set_address (hci_t *controller, usb_speed speed, int hubport, int hubaddr)
|
||||
break;
|
||||
case hub_device:
|
||||
usb_debug ("hub\n");
|
||||
#if IS_ENABLED(CONFIG_LP_USB_HUB)
|
||||
#if CONFIG(LP_USB_HUB)
|
||||
dev->init = usb_hub_init;
|
||||
return dev->address;
|
||||
#else
|
||||
|
Reference in New Issue
Block a user