soc/intel/common: CACHE_MRC_SETTINGS doesn't depend on HAVE_MRC
The FSP platforms use CACHE_MRC_SETTINGS without setting HAVE_MRC, which caused a Kconfig warning. Since CACHE_MRC_SETTINGS doesn't really depend on HAVE_MRC anymore, remove the dependency in Kconfig. Fixes Kconfig warnings: warning: (CPU_SPECIFIC_OPTIONS && CPU_SPECIFIC_OPTIONS && CPU_SPECIFIC_OPTIONS && CPU_SPECIFIC_OPTIONS) selects CACHE_MRC_SETTINGS which has unmet direct dependencies (SOC_INTEL_BROADWELL && HAVE_MRC || SOC_INTEL_COMMON && HAVE_MRC) Change-Id: Id1c108f73d19cbd53b91e1671d57e7752be5d96d Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: http://review.coreboot.org/11288 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
505e609452
commit
0974dbe89a
|
@ -5,8 +5,6 @@ config SOC_INTEL_COMMON
|
||||||
|
|
||||||
if SOC_INTEL_COMMON
|
if SOC_INTEL_COMMON
|
||||||
|
|
||||||
if HAVE_MRC
|
|
||||||
|
|
||||||
config CACHE_MRC_SETTINGS
|
config CACHE_MRC_SETTINGS
|
||||||
bool "Save cached MRC settings"
|
bool "Save cached MRC settings"
|
||||||
default n
|
default n
|
||||||
|
@ -34,8 +32,6 @@ config MRC_SETTINGS_PROTECT
|
||||||
|
|
||||||
endif # CACHE_MRC_SETTINGS
|
endif # CACHE_MRC_SETTINGS
|
||||||
|
|
||||||
endif # HAVE_MRC
|
|
||||||
|
|
||||||
config DISPLAY_MTRRS
|
config DISPLAY_MTRRS
|
||||||
bool "MTRRs: Display the MTRR settings"
|
bool "MTRRs: Display the MTRR settings"
|
||||||
default n
|
default n
|
||||||
|
|
Loading…
Reference in New Issue