[coreboot-gerrit] New patch to review for coreboot: intel/strago: Remove CONFIG_ from CONFIG_GOP_SUPPORT inside Kconfig

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Mon Dec 7 03:44:46 CET 2015


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12664

-gerrit

commit 6762831e59c9f7773cae8410fac2cd19fe38e15b
Author: Martin Roth <martinroth at google.com>
Date:   Sun Dec 6 19:44:02 2015 -0700

    intel/strago: Remove CONFIG_ from CONFIG_GOP_SUPPORT inside Kconfig
    
    The CONFIG_ is only used for Kconfig symbols outside of Kconfig.  If
    used inside Kconfig, you'd end up with CONFIG_CONFIG_GOP_SUPPORT when
    it was used in the C code.
    
    Change-Id: I572323ef08fdd937d33ded1c27a418b3ad856147
    Signed-off-by: Martin Roth <martinroth at google.com>
---
 src/mainboard/intel/strago/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mainboard/intel/strago/Kconfig b/src/mainboard/intel/strago/Kconfig
index 1512a46..364e242 100755
--- a/src/mainboard/intel/strago/Kconfig
+++ b/src/mainboard/intel/strago/Kconfig
@@ -53,7 +53,7 @@ config VBOOT_RAMSTAGE_INDEX
 config VBOOT_REFCODE_INDEX
 	hex
 	default 0x3
-if !CONFIG_GOP_SUPPORT
+if !GOP_SUPPORT
 config VGA_BIOS_FILE
 	string
 	default "3rdparty/blobs/mainboard/intel/strago/vgabios_c0.bin" if C0_DISP_SUPPORT
@@ -62,5 +62,5 @@ config VGA_BIOS_ID
 	string
 	default "8086,22b1" if C0_DISP_SUPPORT
 	default "8086,22b0" if !C0_DISP_SUPPORT
-endif
+endif # GOP_SUPPORT
 endif # BOARD_INTEL_STRAGO



More information about the coreboot-gerrit mailing list