diff options
author | Timothy Pearson <tpearson@raptorengineeringinc.com> | 2015-10-28 14:41:04 -0500 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-10-30 17:44:02 +0100 |
commit | e3b5d36321216cbeef48f18768eafaea915ea691 (patch) | |
tree | 638a7c51ba876e96bf634aa7a804fa16181036e0 /src/cpu/amd | |
parent | 6b171b3163eb3a4e8bcfd53f0d2d8b47d619b78d (diff) | |
download | coreboot-e3b5d36321216cbeef48f18768eafaea915ea691.tar.xz |
cpu/amd/model_fxx: Enable FIDVID code on Socket F K8
The existing Kconfig option for FIDVID was permanently
set to "no" due to Kconfig stopping at the first matching
value set when parsing the file. This patch moves the
conditional set above the unconditional set, resolving
the issue.
Change-Id: Ic19f68f6b17943f9133ff32a9b6538f0bf942eca
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/12224
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/cpu/amd')
-rw-r--r-- | src/cpu/amd/model_fxx/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/amd/model_fxx/Kconfig b/src/cpu/amd/model_fxx/Kconfig index 1172d2964d..ed5020ff89 100644 --- a/src/cpu/amd/model_fxx/Kconfig +++ b/src/cpu/amd/model_fxx/Kconfig @@ -30,8 +30,8 @@ config LIFT_BSP_APIC_ID config SET_FIDVID bool - default n default y if K8_REV_F_SUPPORT + default n config HW_SCRUBBER bool |