coreboot: Replace all IS_ENABLED(CONFIG_XXX) with CONFIG(XXX)
This patch is a raw application of find src/ -type f | xargs sed -i -e 's/IS_ENABLED\s*(CONFIG_/CONFIG(/g' Change-Id: I6262d6d5c23cabe23c242b4f38d446b74fe16b88 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31774 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
b3a8cc54db
commit
cd49cce7b7
@@ -853,7 +853,7 @@ static void XGINew_SetDRAMSize_340(struct xgifb_video_info *xgifb_info,
|
||||
|
||||
pVBInfo->FBAddr = HwDeviceExtension->pjVideoMemoryAddress;
|
||||
|
||||
if (IS_ENABLED(CONFIG_LINEAR_FRAMEBUFFER))
|
||||
if (CONFIG(LINEAR_FRAMEBUFFER))
|
||||
XGISetModeNew(xgifb_info, HwDeviceExtension, 0x2e);
|
||||
|
||||
data = xgifb_reg_get(pVBInfo->P3c4, 0x21);
|
||||
|
@@ -118,7 +118,7 @@ int xgifb_probe(struct pci_dev *pdev, struct xgifb_video_info *xgifb_info)
|
||||
xgifb_info->video_size = video_size_max;
|
||||
}
|
||||
|
||||
if (IS_ENABLED(CONFIG_LINEAR_FRAMEBUFFER)) {
|
||||
if (CONFIG(LINEAR_FRAMEBUFFER)) {
|
||||
/* Enable PCI_LINEAR_ADDRESSING and MMIO_ENABLE */
|
||||
xgifb_reg_or(XGISR,
|
||||
IND_SIS_PCI_ADDRESS_SET,
|
||||
@@ -263,7 +263,7 @@ int xgifb_probe(struct pci_dev *pdev, struct xgifb_video_info *xgifb_info)
|
||||
xgifb_info->mode_idx =
|
||||
XGIfb_GetXG21DefaultLVDSModeIdx(xgifb_info);
|
||||
else
|
||||
if (IS_ENABLED(CONFIG_LINEAR_FRAMEBUFFER))
|
||||
if (CONFIG(LINEAR_FRAMEBUFFER))
|
||||
xgifb_info->mode_idx = DEFAULT_MODE;
|
||||
else
|
||||
xgifb_info->mode_idx = DEFAULT_TEXT_MODE;
|
||||
@@ -338,7 +338,7 @@ int xgifb_modeset(struct pci_dev *pdev, struct xgifb_video_info *xgifb_info)
|
||||
|
||||
hw_info = &xgifb_info->hw_info;
|
||||
|
||||
if (IS_ENABLED(CONFIG_LINEAR_FRAMEBUFFER)) {
|
||||
if (CONFIG(LINEAR_FRAMEBUFFER)) {
|
||||
/* Set mode */
|
||||
XGIfb_pre_setmode(xgifb_info);
|
||||
if (XGISetModeNew(xgifb_info, hw_info,
|
||||
|
@@ -39,7 +39,7 @@ static void xgi_z9s_init(struct device *dev)
|
||||
u8 ret;
|
||||
struct xgifb_video_info *xgifb_info;
|
||||
|
||||
if (IS_ENABLED(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT)) {
|
||||
if (CONFIG(MAINBOARD_DO_NATIVE_VGA_INIT)) {
|
||||
printk(BIOS_INFO, "XGI Z9s: initializing video device\n");
|
||||
xgifb_info = malloc(sizeof(*xgifb_info));
|
||||
ret = xgifb_probe(dev, xgifb_info);
|
||||
|
Reference in New Issue
Block a user