diff options
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/helper.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index f107d5022f..a070e08a6c 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -1692,7 +1692,8 @@ CPUX86State *cpu_x86_init(const char *cpu_model) #ifdef CONFIG_KQEMU kqemu_init(env); #endif - if (kvm_enabled()) - kvm_init_vcpu(env); + + qemu_init_vcpu(env); + return env; } |