Commit 853f6931db87fd4f2f5754d28630a62404338645
1 parent
ea363694
Fix cpuid ext_features value for Atom N270 (Blue Swirl).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5558 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
target-i386/helper.c
@@ -281,7 +281,7 @@ static x86_def_t x86_defs[] = { | @@ -281,7 +281,7 @@ static x86_def_t x86_defs[] = { | ||
281 | * CPUID_HT | CPUID_TM | CPUID_PBE */ | 281 | * CPUID_HT | CPUID_TM | CPUID_PBE */ |
282 | /* Some CPUs got no CPUID_SEP */ | 282 | /* Some CPUs got no CPUID_SEP */ |
283 | .ext_features = CPUID_EXT_MONITOR | | 283 | .ext_features = CPUID_EXT_MONITOR | |
284 | - CPUID_EXT_SSE3 /* PNI */, CPUID_EXT_SSSE3, | 284 | + CPUID_EXT_SSE3 /* PNI */ | CPUID_EXT_SSSE3, |
285 | /* Missing: CPUID_EXT_DSCPL | CPUID_EXT_EST | | 285 | /* Missing: CPUID_EXT_DSCPL | CPUID_EXT_EST | |
286 | * CPUID_EXT_TM2 | CPUID_EXT_XTPR */ | 286 | * CPUID_EXT_TM2 | CPUID_EXT_XTPR */ |
287 | .ext2_features = (PPRO_FEATURES & 0x0183F3FF) | CPUID_EXT2_NX, | 287 | .ext2_features = (PPRO_FEATURES & 0x0183F3FF) | CPUID_EXT2_NX, |