mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
target-i386: make cpu_x86_fill_host() void
The return value of that function is always 0, and is always ignored. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
This commit is contained in:
committed by
Marcelo Tosatti
parent
a0dac021fa
commit
1aefc6b8cb
+1
-3
@@ -766,7 +766,7 @@ static int cpu_x86_fill_model_id(char *str)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int cpu_x86_fill_host(x86_def_t *x86_cpu_def)
|
||||
static void cpu_x86_fill_host(x86_def_t *x86_cpu_def)
|
||||
{
|
||||
uint32_t eax = 0, ebx = 0, ecx = 0, edx = 0;
|
||||
|
||||
@@ -819,8 +819,6 @@ static int cpu_x86_fill_host(x86_def_t *x86_cpu_def)
|
||||
* unsupported ones later.
|
||||
*/
|
||||
x86_cpu_def->svm_features = -1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int unavailable_host_feature(struct model_features_t *f, uint32_t mask)
|
||||
|
||||
Reference in New Issue
Block a user