diff options
author | Marc Jones <marcj303@gmail.com> | 2011-12-14 15:33:33 -0700 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2011-12-26 08:53:02 +0100 |
commit | 79cfe7e024877f51c216449f81a5821e8e782d9b (patch) | |
tree | d7d571dd9af0132b0e2cc454e81412e8bdaa652c /src/cpu/amd | |
parent | 2b751c6f79b34f7d96598beb10c21b2d84d839d9 (diff) | |
download | coreboot-79cfe7e024877f51c216449f81a5821e8e782d9b.tar.xz |
Fix Fam10 MMCONF_SUPPORT_DEFAULT setting.
I misunderstood how kconfig select works. It needs to be selected with a config option. Moved the select to the correct location.
Change-Id: If9b1e21e6cbc5af4671efb76cf87dd18dbbe2234
Signed-off-by: Marc Jones <marcj303@gmail.com>
Reviewed-on: http://review.coreboot.org/487
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/cpu/amd')
-rw-r--r-- | src/cpu/amd/model_10xxx/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/amd/model_10xxx/Kconfig b/src/cpu/amd/model_10xxx/Kconfig index 310f98de91..221d0449ac 100644 --- a/src/cpu/amd/model_10xxx/Kconfig +++ b/src/cpu/amd/model_10xxx/Kconfig @@ -2,6 +2,7 @@ config CPU_AMD_MODEL_10XXX bool select SSE select SSE2 + select MMCONF_SUPPORT_DEFAULT if CPU_AMD_MODEL_10XXX config CPU_ADDR_BITS @@ -82,6 +83,4 @@ config UPDATE_CPU_MICROCODE patches, so you may need to also disable microcode updates in your operating system in order for this option to matter. -select MMCONF_SUPPORT_DEFAULT - endif # CPU_AMD_MODEL_10XXX |