diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-16 02:11:59 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-12-24 17:35:30 +0000 |
commit | d507c49156b9d9b50cbfab3585d7e739ad2a2863 (patch) | |
tree | fb02ccef08c3a7044ed60187a57946001794752c /src/mainboard/google/reef/Kconfig | |
parent | 30f4c531acf9c92ca0b01074e65418c6f70f58e1 (diff) |
mb/google/reef: Drop unnecessary option
Since all variants select the option `BASEBOARD_REEF_LAPTOP`, drop it
and let the common baseboard option select it.
Change-Id: I7f2ffd1e7b9ad2fab500b83c4cc56c9fc2d161ab
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60149
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/google/reef/Kconfig')
-rw-r--r-- | src/mainboard/google/reef/Kconfig | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/mainboard/google/reef/Kconfig b/src/mainboard/google/reef/Kconfig index a4bd882560..b0d0508c4a 100644 --- a/src/mainboard/google/reef/Kconfig +++ b/src/mainboard/google/reef/Kconfig @@ -20,38 +20,29 @@ config BOARD_GOOGLE_BASEBOARD_REEF select MAINBOARD_HAS_TPM2 select SAR_ENABLE select SOC_INTEL_APOLLOLAKE + select SYSTEM_TYPE_LAPTOP select USE_SAR config BOARD_GOOGLE_REEF - select BASEBOARD_REEF_LAPTOP select BOARD_GOOGLE_BASEBOARD_REEF config BOARD_GOOGLE_PYRO - select BASEBOARD_REEF_LAPTOP select BOARD_GOOGLE_BASEBOARD_REEF config BOARD_GOOGLE_SAND - select BASEBOARD_REEF_LAPTOP select BOARD_GOOGLE_BASEBOARD_REEF config BOARD_GOOGLE_SNAPPY - select BASEBOARD_REEF_LAPTOP select BOARD_GOOGLE_BASEBOARD_REEF config BOARD_GOOGLE_NASHER - select BASEBOARD_REEF_LAPTOP select BOARD_GOOGLE_BASEBOARD_REEF config BOARD_GOOGLE_CORAL - select BASEBOARD_REEF_LAPTOP select BOARD_GOOGLE_BASEBOARD_REEF if BOARD_GOOGLE_BASEBOARD_REEF -config BASEBOARD_REEF_LAPTOP - def_bool n - select SYSTEM_TYPE_LAPTOP - config DRIVER_TPM_I2C_BUS hex default 0x2 @@ -67,7 +58,7 @@ config TPM_TIS_ACPI_INTERRUPT config VBOOT select EC_GOOGLE_CHROMEEC_SWITCHES select HAS_RECOVERY_MRC_CACHE - select VBOOT_LID_SWITCH if BASEBOARD_REEF_LAPTOP + select VBOOT_LID_SWITCH config MAINBOARD_DIR default "google/reef" |