diff options
author | Felix Singer <felixsinger@posteo.net> | 2023-05-08 20:01:34 +0200 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-10-03 17:13:29 +0000 |
commit | 8fca63f98f183ad72e2a292cb524e23eb9423ab9 (patch) | |
tree | 6d4fb98e747566b7babc2d1b4aa7b317d9fed594 /src/mainboard | |
parent | 11b299dd78bc24e8db05c082b121cb27524d5ce1 (diff) |
dell/snb_ivb_workstations: Move selects from Kconfig.name to Kconfig
Selects should be done in the Kconfig file instead of Kconfig.name and
not mixed over both files.
Change-Id: I80bd87aa2f97da74a1bbcf05b16f0d5980e142f2
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75072
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/dell/snb_ivb_workstations/Kconfig | 8 | ||||
-rw-r--r-- | src/mainboard/dell/snb_ivb_workstations/Kconfig.name | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/mainboard/dell/snb_ivb_workstations/Kconfig b/src/mainboard/dell/snb_ivb_workstations/Kconfig index 8dcafd1036..bf211bbc89 100644 --- a/src/mainboard/dell/snb_ivb_workstations/Kconfig +++ b/src/mainboard/dell/snb_ivb_workstations/Kconfig @@ -18,6 +18,14 @@ config BOARD_DELL_SNB_IVB_WORKSTATIONS select PCIEXP_L1_SUB_STATE select DRIVERS_UART_8250IO +config BOARD_DELL_OPTIPLEX_9010 + select BOARD_DELL_SNB_IVB_WORKSTATIONS + select SOUTHBRIDGE_INTEL_C216 + +config BOARD_DELL_PRECISION_T1650 + select BOARD_DELL_SNB_IVB_WORKSTATIONS + select SOUTHBRIDGE_INTEL_C216 + if BOARD_DELL_SNB_IVB_WORKSTATIONS config MAINBOARD_DIR diff --git a/src/mainboard/dell/snb_ivb_workstations/Kconfig.name b/src/mainboard/dell/snb_ivb_workstations/Kconfig.name index 6f6d833c06..d258054539 100644 --- a/src/mainboard/dell/snb_ivb_workstations/Kconfig.name +++ b/src/mainboard/dell/snb_ivb_workstations/Kconfig.name @@ -1,9 +1,5 @@ config BOARD_DELL_OPTIPLEX_9010 bool "OptiPlex 9010 SFF" - select BOARD_DELL_SNB_IVB_WORKSTATIONS - select SOUTHBRIDGE_INTEL_C216 config BOARD_DELL_PRECISION_T1650 bool "Dell Precision T1650" - select BOARD_DELL_SNB_IVB_WORKSTATIONS - select SOUTHBRIDGE_INTEL_C216 |