diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2023-04-21 21:43:24 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2023-05-07 07:13:57 +0000 |
commit | 864715322288a2192a2fc8a62c1d03e93f3689dd (patch) | |
tree | af9bd8b58a97fc27b765912bcebbc7a4b9cb90b4 /src/southbridge/intel/common/Kconfig.common | |
parent | 47af801133d4e59b5609b98e460f3b7086b0a589 (diff) |
sb/intel/common: Fix corner-case with Kconfig
To select COMMON_SMM should not imply COMMON_PMBASE, it's
really a depencency. Select them both explicitly for i82801dx.
Change-Id: I387ade9cfd38b6555ed9e37c1b9178a6da2d7260
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74908
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/southbridge/intel/common/Kconfig.common')
-rw-r--r-- | src/southbridge/intel/common/Kconfig.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/common/Kconfig.common b/src/southbridge/intel/common/Kconfig.common index 2da6971326..e138f5e442 100644 --- a/src/southbridge/intel/common/Kconfig.common +++ b/src/southbridge/intel/common/Kconfig.common @@ -59,7 +59,7 @@ config SOUTHBRIDGE_INTEL_COMMON_SMM def_bool n select HAVE_POWER_STATE_AFTER_FAILURE select HAVE_POWER_STATE_PREVIOUS_AFTER_FAILURE - select SOUTHBRIDGE_INTEL_COMMON_PMBASE + depends on SOUTHBRIDGE_INTEL_COMMON_PMBASE config SOUTHBRIDGE_INTEL_COMMON_FINALIZE bool |