diff options
author | Furquan Shaikh <furquan@chromium.org> | 2017-02-17 20:25:46 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-02-20 05:08:27 +0100 |
commit | 97535558f1a1c123a60d73244d835ff5d8d31213 (patch) | |
tree | 40945950c66ac5d0e330cf98052b6df17a00c029 /src/mainboard/google/reef/Kconfig | |
parent | abd5d1d35cc3fb771868d9b970d9748c95ed91f3 (diff) |
mainboard/{google,intel}: Change config option selection
Change config option selection from "config xyz default y" to "select
xyz" if the config option has no dependencies.
BUG=None
BRANCH=None
TEST=Verified that config option selection remains unchanged.
Change-Id: I259ae40623b7f4d5589e2caa0988419ba4fefda4
Signed-off-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: https://review.coreboot.org/18400
Tested-by: build bot (Jenkins)
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Diffstat (limited to 'src/mainboard/google/reef/Kconfig')
-rw-r--r-- | src/mainboard/google/reef/Kconfig | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/src/mainboard/google/reef/Kconfig b/src/mainboard/google/reef/Kconfig index 077cb7c5bc..8612747a12 100644 --- a/src/mainboard/google/reef/Kconfig +++ b/src/mainboard/google/reef/Kconfig @@ -3,6 +3,12 @@ config BOARD_GOOGLE_BASEBOARD_REEF def_bool n select SOC_INTEL_APOLLOLAKE select BOARD_ROMSIZE_KB_16384 + select DRIVERS_GENERIC_MAX98357A + select DRIVERS_I2C_DA7219 + select DRIVERS_I2C_GENERIC + select DRIVERS_I2C_HID + select DRIVERS_I2C_WACOM + select DRIVERS_PS2_KEYBOARD select EC_GOOGLE_CHROMEEC select EC_GOOGLE_CHROMEEC_LPC select HAVE_ACPI_RESUME @@ -38,21 +44,6 @@ config CHROMEOS select MRC_CLEAR_NORMAL_CACHE_ON_RECOVERY_RETRAIN select LID_SWITCH if BASEBOARD_REEF_LAPTOP -config DRIVERS_I2C_DA7219 - default y - -config DRIVERS_I2C_GENERIC - default y - -config DRIVERS_I2C_HID - default y - -config DRIVERS_I2C_WACOM - default y - -config DRIVERS_PS2_KEYBOARD - default y - config MAINBOARD_DIR string default google/reef @@ -103,7 +94,4 @@ config INCLUDE_NHLT_BLOBS select NHLT_DA7219 select NHLT_MAX98357 -config DRIVERS_GENERIC_MAX98357A - default y - endif # BOARD_GOOGLE_REEF |