summaryrefslogtreecommitdiff
path: root/target-i386/helper.c
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-28 00:03:28 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-28 00:03:28 +0000
commit853f6931db87fd4f2f5754d28630a62404338645 (patch)
treeaf95ef2bdf3fd8ef4a06e0bab54317053b35049b /target-i386/helper.c
parentea363694707975f2e41dcabc2a77bc9ca015e7ac (diff)
downloadqemu-853f6931db87fd4f2f5754d28630a62404338645.tar.gz
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
Diffstat (limited to 'target-i386/helper.c')
-rw-r--r--target-i386/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c
index c2e1a88ad4..7569c7e20a 100644
--- a/target-i386/helper.c
+++ b/target-i386/helper.c
@@ -281,7 +281,7 @@ static x86_def_t x86_defs[] = {
* CPUID_HT | CPUID_TM | CPUID_PBE */
/* Some CPUs got no CPUID_SEP */
.ext_features = CPUID_EXT_MONITOR |
- CPUID_EXT_SSE3 /* PNI */, CPUID_EXT_SSSE3,
+ CPUID_EXT_SSE3 /* PNI */ | CPUID_EXT_SSSE3,
/* Missing: CPUID_EXT_DSCPL | CPUID_EXT_EST |
* CPUID_EXT_TM2 | CPUID_EXT_XTPR */
.ext2_features = (PPRO_FEATURES & 0x0183F3FF) | CPUID_EXT2_NX,