diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2012-10-24 19:44:05 -0200 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2012-10-30 23:39:53 -0200 |
commit | 1aefc6b8cbe66e5adb3e6b160f6790171e0a7785 (patch) | |
tree | 3f887f3635188e16fb86608f679fa8d3cb340a5b /target-i386/cpu.c | |
parent | a0dac021fa4b8b87160192c1f60ee26fc6c5ce2e (diff) | |
download | qemu-1aefc6b8cbe66e5adb3e6b160f6790171e0a7785.tar.gz qemu-1aefc6b8cbe66e5adb3e6b160f6790171e0a7785.tar.bz2 qemu-1aefc6b8cbe66e5adb3e6b160f6790171e0a7785.zip |
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>
Diffstat (limited to 'target-i386/cpu.c')
-rw-r--r-- | target-i386/cpu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 4417d6abed..6575834885 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -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) |