From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eduardo Habkost Subject: [QEMU PATCH 1/3] target-i385: make cpu_x86_fill_host() void Date: Wed, 24 Oct 2012 19:44:05 -0200 Message-ID: <1351115047-27828-2-git-send-email-ehabkost@redhat.com> References: <1351115047-27828-1-git-send-email-ehabkost@redhat.com> Cc: andre.przywara@amd.com, kvm@vger.kernel.org, Marcelo Tosatti , Avi Kivity , Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Return-path: In-Reply-To: <1351115047-27828-1-git-send-email-ehabkost@redhat.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+gceq-qemu-devel=gmane.org@nongnu.org Sender: qemu-devel-bounces+gceq-qemu-devel=gmane.org@nongnu.org List-Id: kvm.vger.kernel.org The return value of that function is always 0, and is always ignored. Signed-off-by: Eduardo Habkost --- target-i386/cpu.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 38fca92..42171c9 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -742,7 +742,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; @@ -795,8 +795,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) -- 1.7.11.7