diff options
author | Scott Duplichan <scott@notabs.org> | 2010-10-31 14:17:51 +0000 |
---|---|---|
committer | Scott Duplichan <scott@notabs.org> | 2010-10-31 14:17:51 +0000 |
commit | 27612ed4f28dd29eecbae6d20ed137d03ca5bbdf (patch) | |
tree | 3cc802f41e0c2437e0d3af7a5efc76dc035ebc9f /src/cpu/amd/model_10xxx | |
parent | da22d2190df46f08796088038ddbbd80603c2251 (diff) |
Fix AMD family 10h engineering sample is reported as 'thermal test kit'.
Signed-off-by: Scott Duplichan <scott@notabs.org>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6005 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd/model_10xxx')
-rw-r--r-- | src/cpu/amd/model_10xxx/processor_name.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/amd/model_10xxx/processor_name.c b/src/cpu/amd/model_10xxx/processor_name.c index 52e5cae3ca..3f712e37b4 100644 --- a/src/cpu/amd/model_10xxx/processor_name.c +++ b/src/cpu/amd/model_10xxx/processor_name.c @@ -204,7 +204,7 @@ int init_processor_name(void) memset(program_string, 0, sizeof(program_string)); if (!Model) { - processor_name_string = Pg ? sample : thermal; + processor_name_string = Pg ? thermal : sample; goto done; } |