mirror of https://github.com/xemu-project/xemu.git
target-i386/cpu.c: Coding style fixes
- Use spaces instead of tabs on cpu_x86_cpuid(). - Use braces on 'if' statement cpu_x86_find_by_name(). Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
23e3fbec33
commit
9f3fb5657b
|
@ -1215,7 +1215,7 @@ static int cpu_x86_find_by_name(x86_def_t *x86_cpu_def, const char *cpu_model)
|
|||
|
||||
char *s = g_strdup(cpu_model);
|
||||
char *featurestr, *name = strtok(s, ",");
|
||||
/* Features to be added*/
|
||||
/* Features to be added */
|
||||
uint32_t plus_features = 0, plus_ext_features = 0;
|
||||
uint32_t plus_ext2_features = 0, plus_ext3_features = 0;
|
||||
uint32_t plus_kvm_features = kvm_default_features, plus_svm_features = 0;
|
||||
|
@ -1227,9 +1227,11 @@ static int cpu_x86_find_by_name(x86_def_t *x86_cpu_def, const char *cpu_model)
|
|||
uint32_t minus_7_0_ebx_features = 0;
|
||||
uint32_t numvalue;
|
||||
|
||||
for (def = x86_defs; def; def = def->next)
|
||||
if (name && !strcmp(name, def->name))
|
||||
for (def = x86_defs; def; def = def->next) {
|
||||
if (name && !strcmp(name, def->name)) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (kvm_enabled() && name && strcmp(name, "host") == 0) {
|
||||
kvm_cpu_fill_host(x86_cpu_def);
|
||||
} else if (!def) {
|
||||
|
|
Loading…
Reference in New Issue