src: Change BOOL CONFIG_ to CONFIG() in comments & strings
The Kconfig lint tool checks for cases of the code using BOOL type Kconfig options directly instead of with CONFIG() and will print out warnings about it. It gets confused by these references in comments and strings. To fix it so that it can find the real issues, just update these as we would with real issues. Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: I5c37f0ee103721c97483d07a368c0b813e3f25c0 Reviewed-on: https://review.coreboot.org/c/coreboot/+/43824 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
af56a77915
commit
f48acbda7b
|
@ -63,7 +63,7 @@ static void per_cpu_smm_trigger(void)
|
|||
} else {
|
||||
if (!CONFIG(SET_IA32_FC_LOCK_BIT))
|
||||
printk(BIOS_INFO,
|
||||
"Overriding CONFIG_SET_IA32_FC_LOCK_BIT to enable SMRR\n");
|
||||
"Overriding CONFIG(SET_IA32_FC_LOCK_BIT) to enable SMRR\n");
|
||||
ia32_ft_ctrl.lo |= (1 << 3) | (1 << 0);
|
||||
wrmsr(IA32_FEATURE_CONTROL, ia32_ft_ctrl);
|
||||
}
|
||||
|
|
|
@ -653,7 +653,7 @@ static void print_us(const char *msg, u32 val)
|
|||
/**
|
||||
* \brief Print the info in DIMM
|
||||
*
|
||||
* Print info about the DIMM. Useful to use when CONFIG_DEBUG_RAM_SETUP is
|
||||
* Print info about the DIMM. Useful to use when CONFIG(DEBUG_RAM_SETUP) is
|
||||
* selected, or for a purely informative output.
|
||||
*
|
||||
* @param dimm pointer to already decoded @ref dimm_attr structure
|
||||
|
|
|
@ -593,7 +593,7 @@ static void print_ns(const char *msg, u32 val)
|
|||
/**
|
||||
* \brief Print the info in DIMM
|
||||
*
|
||||
* Print info about the DIMM. Useful to use when CONFIG_DEBUG_RAM_SETUP is
|
||||
* Print info about the DIMM. Useful to use when CONFIG(DEBUG_RAM_SETUP) is
|
||||
* selected, or for a purely informative output.
|
||||
*
|
||||
* @param dimm pointer to already decoded @ref dimm_attr structure
|
||||
|
|
|
@ -24,7 +24,7 @@ void fsp_verify_memory_init_hobs(void);
|
|||
void fsp_print_header_info(const struct fsp_header *hdr);
|
||||
|
||||
/* Callbacks for displaying UPD parameters - place in a separate file
|
||||
* that is conditionally build with CONFIG_DISPLAY_UPD_DATA.
|
||||
* that is conditionally build with CONFIG(DISPLAY_UPD_DATA).
|
||||
*/
|
||||
void soc_display_fspm_upd_params(const FSPM_UPD *fspm_old_upd,
|
||||
const FSPM_UPD *fspm_new_upd);
|
||||
|
@ -32,7 +32,7 @@ void soc_display_fsps_upd_params(const FSPS_UPD *fsps_old_upd,
|
|||
const FSPS_UPD *fsps_new_upd);
|
||||
|
||||
/* Callbacks for displaying HOBs - place in a separate file that is
|
||||
* conditionally build with CONFIG_DISPLAY_HOBS.
|
||||
* conditionally build with CONFIG(DISPLAY_HOBS).
|
||||
*/
|
||||
const char *soc_get_hob_type_name(const struct hob_header *hob);
|
||||
const char *soc_get_guid_name(const uint8_t *guid);
|
||||
|
|
|
@ -144,7 +144,7 @@ static void cmos_init_vbnv(bool invalid)
|
|||
uint8_t vbnv[VBOOT_VBNV_BLOCK_SIZE];
|
||||
|
||||
/* __cmos_init() will clear vbnv contents when a known rtc failure
|
||||
occurred with !CONFIG_USE_OPTION_TABLE. However, __cmos_init() may
|
||||
occurred with !CONFIG(USE_OPTION_TABLE). However, __cmos_init() may
|
||||
clear vbnv data for other internal reasons. For that, always back up
|
||||
the vbnv contents and conditionally save them when __cmos_init()
|
||||
indicates CMOS was cleared. */
|
||||
|
|
|
@ -41,7 +41,7 @@ static struct spi_slave spi_slave;
|
|||
static struct tpm2_info tpm_info;
|
||||
|
||||
/*
|
||||
* TODO(vbendeb): make CONFIG_DEBUG_TPM an int to allow different level of
|
||||
* TODO(vbendeb): make CONFIG(DEBUG_TPM) an int to allow different level of
|
||||
* debug traces. Right now it is either 0 or 1.
|
||||
*/
|
||||
static const int debug_level_ = CONFIG_DEBUG_TPM;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* This function performs early initialization of the EC:
|
||||
*
|
||||
* - Enable EC UART passthru for COM1 if serial console support
|
||||
* is enabled with CONFIG_DRIVERS_UART_8250IO.
|
||||
* is enabled with CONFIG(DRIVERS_UART_8250IO).
|
||||
*/
|
||||
void wilco_ec_early_init(void);
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ int get_recovery_mode_switch(void)
|
|||
}
|
||||
|
||||
/**
|
||||
* Only used if CONFIG_CHROMEOS is set.
|
||||
* Only used if CONFIG(CHROMEOS) is set.
|
||||
* Always zero as the #WP pin of the flash is tied high.
|
||||
*/
|
||||
int get_write_protect_state(void)
|
||||
|
|
|
@ -33,10 +33,10 @@
|
|||
/** @} */
|
||||
|
||||
/**
|
||||
* \brief Convenience macro for enabling printk with CONFIG_DEBUG_RAM_SETUP
|
||||
* \brief Convenience macro for enabling printk with CONFIG(DEBUG_RAM_SETUP)
|
||||
*
|
||||
* Use this macro instead of printk(); for verbose RAM initialization messages.
|
||||
* When CONFIG_DEBUG_RAM_SETUP is not selected, these messages are automatically
|
||||
* When CONFIG(DEBUG_RAM_SETUP) is not selected, these messages are automatically
|
||||
* disabled.
|
||||
* @{
|
||||
*/
|
||||
|
|
|
@ -34,10 +34,10 @@
|
|||
/** @} */
|
||||
|
||||
/**
|
||||
* \brief Convenience macro for enabling printk with CONFIG_DEBUG_RAM_SETUP
|
||||
* \brief Convenience macro for enabling printk with CONFIG(DEBUG_RAM_SETUP)
|
||||
*
|
||||
* Use this macro instead of printk(); for verbose RAM initialization messages.
|
||||
* When CONFIG_DEBUG_RAM_SETUP is not selected, these messages are automatically
|
||||
* When CONFIG(DEBUG_RAM_SETUP) is not selected, these messages are automatically
|
||||
* disabled.
|
||||
* @{
|
||||
*/
|
||||
|
|
|
@ -14,7 +14,7 @@ enum {
|
|||
|
||||
/*
|
||||
* It's up to the caller to decide when to retrieve and stash data. There is
|
||||
* differentiation on recovery mode CONFIG_HAS_RECOVERY_MRC_CACHE, but that's
|
||||
* differentiation on recovery mode CONFIG(HAS_RECOVERY_MRC_CACHE), but that's
|
||||
* only for locating where to retrieve and save the data. If a platform doesn't
|
||||
* want to update the data then it shouldn't stash the data for saving.
|
||||
* Similarly, if the platform doesn't need the data for booting because of a
|
||||
|
|
|
@ -202,7 +202,7 @@ int chipset_volatile_group_begin(const struct spi_flash *flash);
|
|||
int chipset_volatile_group_end(const struct spi_flash *flash);
|
||||
|
||||
/* Return spi_flash object reference for the boot device. This is only valid
|
||||
* if CONFIG_BOOT_DEVICE_SPI_FLASH is enabled. */
|
||||
* if CONFIG(BOOT_DEVICE_SPI_FLASH) is enabled. */
|
||||
const struct spi_flash *boot_device_spi_flash(void);
|
||||
|
||||
/* Protect a region of spi flash using its controller, if available. Returns
|
||||
|
|
|
@ -16,12 +16,12 @@ static void bootblock_northbridge_init(void)
|
|||
|
||||
/*
|
||||
* The "io" variant of the config access is explicitly used to
|
||||
* setup the PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to
|
||||
* setup the PCIEXBAR because CONFIG(MMCONF_SUPPORT) is set to
|
||||
* to true. That way all subsequent non-explicit config accesses use
|
||||
* MCFG. This code also assumes that bootblock_northbridge_init() is
|
||||
* the first thing called in the non-asm boot block code. The final
|
||||
* assumption is that no assembly code is using the
|
||||
* CONFIG_MMCONF_SUPPORT option to do PCI config acceses.
|
||||
* CONFIG(MMCONF_SUPPORT) option to do PCI config acceses.
|
||||
*
|
||||
* The PCIEXBAR is assumed to live in the memory mapped IO space under
|
||||
* 4GiB.
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
/*
|
||||
* Define platform specific Memory Down Configure structure.
|
||||
*
|
||||
* If CONFIG_ENABLE_FSP_MEMORY_DOWN is enabled, the MEMORY_DOWN_CONFIG
|
||||
* If CONFIG(ENABLE_FSP_MEMORY_DOWN) is enabled, the MEMORY_DOWN_CONFIG
|
||||
* structure should be customized to match the design.
|
||||
*
|
||||
* .SlotState indicates the memory down state of the specific channel/DIMM.
|
||||
|
|
|
@ -11,12 +11,12 @@ void bootblock_early_northbridge_init(void)
|
|||
|
||||
/*
|
||||
* The "io" variant of the config access is explicitly used to
|
||||
* setup the PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to
|
||||
* setup the PCIEXBAR because CONFIG(MMCONF_SUPPORT) is set to
|
||||
* to true. That way all subsequent non-explicit config accesses use
|
||||
* MCFG. This code also assumes that bootblock_northbridge_init() is
|
||||
* the first thing called in the non-asm boot block code. The final
|
||||
* assumption is that no assembly code is using the
|
||||
* CONFIG_MMCONF_SUPPORT option to do PCI config accesses.
|
||||
* CONFIG(MMCONF_SUPPORT) option to do PCI config accesses.
|
||||
*
|
||||
* The PCIEXBAR is assumed to live in the memory mapped IO space under
|
||||
* 4GiB.
|
||||
|
|
|
@ -10,11 +10,11 @@ void bootblock_early_northbridge_init(void)
|
|||
|
||||
/*
|
||||
* The "io" variant of the config access is explicitly used to setup the PCIEXBAR
|
||||
* because CONFIG_MMCONF_SUPPORT is set to true. That way, all subsequent
|
||||
* because CONFIG(MMCONF_SUPPORT) is set to true. That way, all subsequent
|
||||
* non-explicit config accesses use MCFG. This code also assumes that
|
||||
* bootblock_northbridge_init() is the first thing called in the non-asm
|
||||
* boot block code. The final assumption is that no assembly code is using
|
||||
* the CONFIG_MMCONF_SUPPORT option to do PCI config acceses.
|
||||
* the CONFIG(MMCONF_SUPPORT) option to do PCI config acceses.
|
||||
*
|
||||
* The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
|
||||
*/
|
||||
|
|
|
@ -10,10 +10,10 @@ void bootblock_early_northbridge_init(void)
|
|||
|
||||
/*
|
||||
* The "io" variant of the config access is explicitly used to setup the PCIEXBAR
|
||||
* because CONFIG_MMCONF_SUPPORT is set to true. That way all subsequent non-explicit
|
||||
* because CONFIG(MMCONF_SUPPORT) is set to true. That way all subsequent non-explicit
|
||||
* config accesses use MCFG. This code also assumes that bootblock_northbridge_init() is
|
||||
* the first thing called in the non-asm boot block code. The final assumption is that
|
||||
* no assembly code is using the CONFIG_MMCONF_SUPPORT option to do PCI config accesses.
|
||||
* no assembly code is using the CONFIG(MMCONF_SUPPORT) option to do PCI config accesses.
|
||||
*
|
||||
* The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
|
||||
*/
|
||||
|
|
|
@ -10,11 +10,11 @@ void bootblock_early_northbridge_init(void)
|
|||
|
||||
/*
|
||||
* The "io" variant of the config access is explicitly used to setup the
|
||||
* PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to to true. That way, all
|
||||
* PCIEXBAR because CONFIG(MMCONF_SUPPORT) is set to to true. That way, all
|
||||
* subsequent non-explicit config accesses use MCFG. This code also assumes
|
||||
* that bootblock_northbridge_init() is the first thing called in the non-asm
|
||||
* boot block code. The final assumption is that no assembly code is using the
|
||||
* CONFIG_MMCONF_SUPPORT option to do PCI config accesses.
|
||||
* CONFIG(MMCONF_SUPPORT) option to do PCI config accesses.
|
||||
*
|
||||
* The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
|
||||
*/
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
/*
|
||||
* vboot callbacks implemented by coreboot -- necessary for making general API
|
||||
* calls when CONFIG_VBOOT_LIB is enabled. For callbacks specific to verstage
|
||||
* (CONFIG_VBOOT), please see vboot_logic.c.
|
||||
* calls when CONFIG(VBOOT_LIB) is enabled. For callbacks specific to verstage
|
||||
* CONFIG(VBOOT), please see vboot_logic.c.
|
||||
*/
|
||||
|
||||
void vb2ex_printf(const char *func, const char *fmt, ...)
|
||||
|
|
|
@ -11,12 +11,12 @@ void bootblock_early_northbridge_init(void)
|
|||
|
||||
/*
|
||||
* The "io" variant of the config access is explicitly used to
|
||||
* setup the PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to
|
||||
* setup the PCIEXBAR because CONFIG(MMCONF_SUPPORT) is set to
|
||||
* to true. That way all subsequent non-explicit config accesses use
|
||||
* MCFG. This code also assumes that bootblock_northbridge_init() is
|
||||
* the first thing called in the non-asm boot block code. The final
|
||||
* assumption is that no assembly code is using the
|
||||
* CONFIG_MMCONF_SUPPORT option to do PCI config accesses.
|
||||
* CONFIG(MMCONF_SUPPORT) option to do PCI config accesses.
|
||||
*
|
||||
* The PCIEXBAR is assumed to live in the memory mapped IO space under
|
||||
* 4GiB.
|
||||
|
|
|
@ -226,7 +226,7 @@ static void imr_resource(struct device *dev, int idx, uint32_t base,
|
|||
|
||||
/*
|
||||
* Add IMR ranges that hang off the host bridge/memory
|
||||
* controller device in case CONFIG_SA_ENABLE_IMR is selected by SoC.
|
||||
* controller device in case CONFIG(SA_ENABLE_IMR) is selected by SoC.
|
||||
*/
|
||||
static void sa_add_imr_resources(struct device *dev, int *resource_cnt)
|
||||
{
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
#define MCH_PAIR 0x5418
|
||||
|
||||
/*
|
||||
* IMR register in case CONFIG_SA_ENABLE_IMR is selected by SoC.
|
||||
* IMR register in case CONFIG(SA_ENABLE_IMR) is selected by SoC.
|
||||
*
|
||||
* IMR registers are found under MCHBAR.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue