[coreboot-gerrit] New patch to review for coreboot: d9c3d2b Fix incorrect Kconfig expressions

Martin Roth (gaumless@gmail.com) gerrit at coreboot.org
Sat Jun 6 05:55:40 CEST 2015


Martin Roth (gaumless at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10437

-gerrit

commit d9c3d2be08fdb8f161e8647832311180361da243
Author: Martin Roth <gaumless at gmail.com>
Date:   Fri Jun 5 21:01:59 2015 -0600

    Fix incorrect Kconfig expressions
    
    The symbols used in these expressions were not correct and would never
    evaluate as true.  Changed them to the correct symbols.
    
    Change-Id: Ia20177f41505473b14bc7b8e4b6fb16de36cc295
    Signed-off-by: Martin Roth <gaumless at gmail.com>
---
 src/soc/intel/broadwell/Kconfig     | 2 +-
 src/southbridge/via/vt8237r/Kconfig | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/soc/intel/broadwell/Kconfig b/src/soc/intel/broadwell/Kconfig
index a282289..20fc2f0 100644
--- a/src/soc/intel/broadwell/Kconfig
+++ b/src/soc/intel/broadwell/Kconfig
@@ -176,7 +176,7 @@ config INTEL_PCH_UART_CONSOLE
 	default n
 	select HAVE_UART_MEMORY_MAPPED
 	select CONSOLE_SERIAL8250MEM
-	depends on !CONFIG_DRIVERS_OXFORD_OXPCIE
+	depends on !DRIVERS_UART_OXPCIE
 
 config INTEL_PCH_UART_CONSOLE_NUMBER
 	hex "Serial IO UART number to use for console"
diff --git a/src/southbridge/via/vt8237r/Kconfig b/src/southbridge/via/vt8237r/Kconfig
index 02cdd34..10b826c 100644
--- a/src/southbridge/via/vt8237r/Kconfig
+++ b/src/southbridge/via/vt8237r/Kconfig
@@ -24,7 +24,7 @@ config SOUTHBRIDGE_VIA_VT8237R
 
 if SOUTHBRIDGE_VIA_VT8237R
 
-if NORTHBRIDGE_AMD_K8 || NORTHBRIDGE_AMD_FAM10
+if NORTHBRIDGE_AMD_AMDK8 || NORTHBRIDGE_AMD_AMDFAM10
 config SOUTH_BRIDGE_OPTIONS # dummy
 	def_bool y
 	select HAVE_SMI_HANDLER



More information about the coreboot-gerrit mailing list