diff options
author | Gabe Black <gabeblack@chromium.org> | 2013-07-09 13:15:05 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-07-10 02:38:55 +0200 |
commit | 3fb30eeb147fecb4124b63c353a7b8aac61d4c2a (patch) | |
tree | c0efdb6b0b36057a73d791ea3f82773b0f1b5f56 /src | |
parent | 54d6abd276ac5c60e3846266050167cc1754dcf0 (diff) | |
download | coreboot-3fb30eeb147fecb4124b63c353a7b8aac61d4c2a.tar.xz |
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@chromium.org>
Reviewed-on: http://review.coreboot.org/3737
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/ec/google/chromeec/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ec/google/chromeec/Kconfig b/src/ec/google/chromeec/Kconfig index 773f294b02..48b4ae981a 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. |