From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L0fHn-00024N-R5 for qemu-devel@nongnu.org; Thu, 13 Nov 2008 11:43:15 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L0fHl-00023Y-VD for qemu-devel@nongnu.org; Thu, 13 Nov 2008 11:43:15 -0500 Received: from [199.232.76.173] (port=38121 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L0fHl-00023D-Gf for qemu-devel@nongnu.org; Thu, 13 Nov 2008 11:43:13 -0500 Received: from mail19.svc.cra.dublin.eircom.net ([159.134.118.218]:38049) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1L0fHl-00086Q-Jo for qemu-devel@nongnu.org; Thu, 13 Nov 2008 11:43:13 -0500 From: Mark McLoughlin Date: Thu, 13 Nov 2008 16:42:04 +0000 Message-Id: <1226594526-1855-1-git-send-email-markmc@redhat.com> In-Reply-To: <> References: <> Subject: [Qemu-devel] [PATCH 1/3] x86: fix warning without CONFIG_KVM Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Mark McLoughlin , qemu-devel@nongnu.org Warning is: target-i386/helper.c: In function `cpu_x86_cpuid': target-i386/helper.c:1373: warning: implicit declaration of function `host_cpuid' Signed-off-by: Mark McLoughlin --- target-i386/helper.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target-i386/helper.c b/target-i386/helper.c index 7ddb4ce..c8b8be9 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -1296,10 +1296,10 @@ target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr) } #endif /* !CONFIG_USER_ONLY */ -#if defined(CONFIG_KVM) static void host_cpuid(uint32_t function, uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx) { +#if defined(CONFIG_KVM) uint32_t vec[4]; #ifdef __x86_64__ @@ -1327,8 +1327,8 @@ static void host_cpuid(uint32_t function, uint32_t *eax, uint32_t *ebx, *ecx = vec[2]; if (edx) *edx = vec[3]; -} #endif +} void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t *eax, uint32_t *ebx, -- 1.5.4.3