From patchwork Tue Aug 4 09:36:04 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liu Yu-B13201 X-Patchwork-Id: 30715 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by bilbo.ozlabs.org (Postfix) with ESMTPS id 60A09B6F1E for ; Tue, 4 Aug 2009 19:44:28 +1000 (EST) Received: from localhost ([127.0.0.1]:49201 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MYGZD-0003WT-Nc for incoming@patchwork.ozlabs.org; Tue, 04 Aug 2009 05:44:23 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MYGYW-0003UQ-8G for qemu-devel@nongnu.org; Tue, 04 Aug 2009 05:43:40 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MYGYR-0003Ri-Hz for qemu-devel@nongnu.org; Tue, 04 Aug 2009 05:43:39 -0400 Received: from [199.232.76.173] (port=60384 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MYGYR-0003RW-B8 for qemu-devel@nongnu.org; Tue, 04 Aug 2009 05:43:35 -0400 Received: from az33egw02.freescale.net ([192.88.158.103]:36311) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MYGYQ-000217-Lz for qemu-devel@nongnu.org; Tue, 04 Aug 2009 05:43:34 -0400 Received: from de01smr01.freescale.net (de01smr01.freescale.net [10.208.0.31]) by az33egw02.freescale.net (8.14.3/az33egw02) with ESMTP id n749fYJt009548 for ; Tue, 4 Aug 2009 02:41:44 -0700 (MST) Received: from zch01exm26.fsl.freescale.net (zch01exm26.ap.freescale.net [10.192.129.221]) by de01smr01.freescale.net (8.13.1/8.13.0) with ESMTP id n749fvh8008366 for ; Tue, 4 Aug 2009 04:41:59 -0500 (CDT) Received: from localhost ([10.193.20.106]) by zch01exm26.fsl.freescale.net with Microsoft SMTPSVC(6.0.3790.3959); Tue, 4 Aug 2009 17:41:30 +0800 From: Liu Yu To: qemu-devel@nongnu.org Date: Tue, 4 Aug 2009 17:36:04 +0800 Message-Id: <1249378568-18008-2-git-send-email-yu.liu@freescale.com> X-Mailer: git-send-email 1.5.4 In-Reply-To: <1249378568-18008-1-git-send-email-yu.liu@freescale.com> References: <1249378568-18008-1-git-send-email-yu.liu@freescale.com> X-OriginalArrivalTime: 04 Aug 2009 09:41:30.0899 (UTC) FILETIME=[BF102E30:01CA14E7] X-Brightmail-Tracker: AAAAAQAAAWE= X-detected-operating-system: by monty-python.gnu.org: Solaris 8 (1) Cc: jan.kiszka@siemens.com, froydnj@codesourcery.com, Liu Yu , kvm-ppc@vger.kernel.org, hollisb@us.ibm.com Subject: [Qemu-devel] [PATCH 1/5] kvmppc: Fix build error X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org like this: /home/liuyu/git/qemu.git/target-ppc/kvm_ppc.c: In function 'kvmppc_read_host_property': /home/liuyu/git/qemu.git/target-ppc/kvm_ppc.c:55: error: label 'out' defined but not used Signed-off-by: Liu Yu --- target-ppc/kvm_ppc.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/target-ppc/kvm_ppc.c b/target-ppc/kvm_ppc.c index 6b7f411..4ed6fc7 100644 --- a/target-ppc/kvm_ppc.c +++ b/target-ppc/kvm_ppc.c @@ -52,7 +52,6 @@ close: fclose(f); free: free(path); -out: return ret; }