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
@@ -70,7 +70,7 @@ static struct mtk_i2c i2c[7] = {
|
||||
|
||||
#define I2CTAG "[I2C][PL] "
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_I2C)
|
||||
#if CONFIG(DEBUG_I2C)
|
||||
#define I2CLOG(fmt, arg...) printk(BIOS_INFO, I2CTAG fmt, ##arg)
|
||||
#else
|
||||
#define I2CLOG(fmt, arg...)
|
||||
|
@@ -178,7 +178,7 @@ void dramk_check_dq_win(struct dqs_perbit_dly *p, u8 dly_step, u8 last_step, u32
|
||||
void tx_delay_for_wrleveling(u32 channel, struct dqs_perbit_dly *dqdqs_perbit_dly,
|
||||
u8 *ave_dqdly_byte, u8 *max_dqsdly_byte);
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_DRAM)
|
||||
#if CONFIG(DEBUG_DRAM)
|
||||
#define dramc_dbg_msg(_x_...) printk(BIOS_DEBUG, _x_)
|
||||
#else
|
||||
#define dramc_dbg_msg(_x_...)
|
||||
|
@@ -32,7 +32,7 @@ void mt_mem_init(const struct mt8173_sdram_params *sdram_params)
|
||||
/* memory calibration */
|
||||
mt_set_emi(sdram_params);
|
||||
|
||||
if (IS_ENABLED(CONFIG_MEMORY_TEST)) {
|
||||
if (CONFIG(MEMORY_TEST)) {
|
||||
/*
|
||||
* do memory test:
|
||||
* set memory scan range 0x2000
|
||||
|
@@ -20,7 +20,7 @@
|
||||
#include <soc/pmic_wrap.h>
|
||||
#include <types.h>
|
||||
|
||||
#if IS_ENABLED(CONFIG_DEBUG_PMIC)
|
||||
#if CONFIG(DEBUG_PMIC)
|
||||
#define DEBUG_PMIC(level, x...) printk(level, x)
|
||||
#else
|
||||
#define DEBUG_PMIC(level, x...)
|
||||
|
@@ -21,7 +21,7 @@
|
||||
#include <console/console.h>
|
||||
|
||||
#define dramc_show(_x_...) printk(BIOS_INFO, _x_)
|
||||
#if IS_ENABLED(CONFIG_DEBUG_DRAM)
|
||||
#if CONFIG(DEBUG_DRAM)
|
||||
#define dramc_dbg(_x_...) printk(BIOS_DEBUG, _x_)
|
||||
#else
|
||||
#define dramc_dbg(_x_...)
|
||||
|
@@ -26,7 +26,7 @@ void mt_mem_init(const struct sdram_params *params)
|
||||
/* memory calibration */
|
||||
mt_set_emi(params);
|
||||
|
||||
if (IS_ENABLED(CONFIG_MEMORY_TEST)) {
|
||||
if (CONFIG(MEMORY_TEST)) {
|
||||
size_t r;
|
||||
u8 *addr = _dram;
|
||||
|
||||
|
Reference in New Issue
Block a user