[coreboot-gerrit] Patch set updated for coreboot: 673d513 ChromeEC: Fix the default, depends for EC_GOOGLE_CHROMEEC_I2C.

Gabe Black (gabeblack@chromium.org) gerrit at coreboot.org
Tue Jul 9 22:44:03 CEST 2013


Gabe Black (gabeblack at chromium.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3737

-gerrit

commit 673d513ca27a4c464301c5d98d1b34bba540fae6
Author: Gabe Black <gabeblack at chromium.org>
Date:   Tue Jul 9 13:15:05 2013 -0700

    ChromeEC: Fix the default, depends for EC_GOOGLE_CHROMEEC_I2C.
    
    The default for this variable should be n, it should only depend on
    EC_GOOGLE_CHROMEEC, and it should be (and is) explicitly enabled when
    needed. This prevents it from being turned on when the EC bus is SPI.
    
    Change-Id: Idc6651a764be4f055341a36b9b4a58990f050b0c
    Signed-off-by: Gabe Black <gabeblack at chromium.org>
---
 src/ec/google/chromeec/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/ec/google/chromeec/Kconfig b/src/ec/google/chromeec/Kconfig
index 773f294..48b4ae9 100644
--- a/src/ec/google/chromeec/Kconfig
+++ b/src/ec/google/chromeec/Kconfig
@@ -4,9 +4,9 @@ config EC_GOOGLE_CHROMEEC
 	  Google's Chrome EC
 
 config EC_GOOGLE_CHROMEEC_I2C
-	depends on EC_GOOGLE_CHROMEEC && !EC_GOOGLE_CHROMEEC_LPC
+	depends on EC_GOOGLE_CHROMEEC
 	bool
-	default y
+	default n
 	help
 	  Google's Chrome EC via I2C bus.
 



More information about the coreboot-gerrit mailing list