Martin Roth has uploaded this change for review. ( https://review.coreboot.org/20358
Change subject: src: add IS_ENABLED() around Kconfig symbol references ......................................................................
src: add IS_ENABLED() around Kconfig symbol references
These are places that were missed on the first pass.
Change-Id: Ia6511f0325433ab020946078923bf7ad6f0362a3 Signed-off-by: Martin Roth martinroth@google.com --- M src/arch/x86/pci_ops_conf1.c M src/arch/x86/smbios.c M src/console/vtxprintf.c 3 files changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/58/20358/1
diff --git a/src/arch/x86/pci_ops_conf1.c b/src/arch/x86/pci_ops_conf1.c index 820744c..a92fd31 100644 --- a/src/arch/x86/pci_ops_conf1.c +++ b/src/arch/x86/pci_ops_conf1.c @@ -20,7 +20,7 @@ * Functions for accessing PCI configuration space with type 1 accesses */
-#if !CONFIG_PCI_IO_CFG_EXT +#if !IS_ENABLED(CONFIG_PCI_IO_CFG_EXT) #define CONFIG_CMD(bus, devfn, where) (0x80000000 | (bus << 16) | \ (devfn << 8) | (where & ~3)) #else diff --git a/src/arch/x86/smbios.c b/src/arch/x86/smbios.c index 9721802..e2ee545 100644 --- a/src/arch/x86/smbios.c +++ b/src/arch/x86/smbios.c @@ -278,7 +278,7 @@ t->length = len - 2;
t->vendor = smbios_add_string(t->eos, "coreboot"); -#if !CONFIG_CHROMEOS +#if !IS_ENABLED(CONFIG_CHROMEOS) t->bios_release_date = smbios_add_string(t->eos, coreboot_dmi_date);
t->bios_version = smbios_add_string(t->eos, diff --git a/src/console/vtxprintf.c b/src/console/vtxprintf.c index 5f37253..acf2f80 100644 --- a/src/console/vtxprintf.c +++ b/src/console/vtxprintf.c @@ -21,7 +21,7 @@
#define call_tx(x) tx_byte(x, data)
-#if !CONFIG_ARCH_MIPS +#if !IS_ENABLED(CONFIG_ARCH_MIPS) #define SUPPORT_64BIT_INTS #endif