From patchwork Fri Oct 5 14:00:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 189504 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D2F702C032F for ; Sat, 6 Oct 2012 00:55:50 +1000 (EST) Received: from localhost ([::1]:44892 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TK8To-0000mD-7x for incoming@patchwork.ozlabs.org; Fri, 05 Oct 2012 10:02:16 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34273) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TK8So-0006ny-1o for qemu-devel@nongnu.org; Fri, 05 Oct 2012 10:01:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TK8Se-0006TA-2w for qemu-devel@nongnu.org; Fri, 05 Oct 2012 10:01:13 -0400 Received: from mail-bk0-f45.google.com ([209.85.214.45]:44818) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TK8Sd-0006HH-Rr for qemu-devel@nongnu.org; Fri, 05 Oct 2012 10:01:04 -0400 Received: by mail-bk0-f45.google.com with SMTP id jf3so815270bkc.4 for ; Fri, 05 Oct 2012 07:01:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=aHKOM8XokpnqK1vRE4SbQsxT6vtmB4pXQq9RewCAwU4=; b=TsQ3D5pLsA7LkdWHhnci4E44IarOKs3lC/kIPocJuWjFfezHFiEPPgkgoz/3R6s7Ii wgthPPAQqMIEV4ypfzWUdagVeo40ukp+hGP1l14GhvAH6PIq/GhXOVZ2VCDbWb6l7oHu Sd2r8/ER1acwKBDrFOKeWrfCIfZUQfHF3eelMajph/VxvmYfRkZ9mwv7WfCfqCQUIGrx 0qwkYiiqa05fQWmEA5mVvkpOKCz9mRN3LoY1bQ5ULc3QJC+MKGn0aUzi7vBQuZjD6/nD 1NKulBh8PwgSjJIdzi84RZnU2BSfMNIE0hXI4Y4O0dCZ2VQXYqQoJcfnr82GGU0wi6O+ H8kA== Received: by 10.204.130.204 with SMTP id u12mr2788823bks.17.1349445663331; Fri, 05 Oct 2012 07:01:03 -0700 (PDT) Received: from localhost (188-194-152-192-dynip.superkabel.de. [188.194.152.192]) by mx.google.com with ESMTPS id j24sm7747156bkv.0.2012.10.05.07.01.02 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 05 Oct 2012 07:01:02 -0700 (PDT) From: Stefan Hajnoczi To: Anthony Liguori Date: Fri, 5 Oct 2012 16:00:29 +0200 Message-Id: <1349445632-23674-10-git-send-email-stefanha@gmail.com> X-Mailer: git-send-email 1.7.11.4 In-Reply-To: <1349445632-23674-1-git-send-email-stefanha@gmail.com> References: <1349445632-23674-1-git-send-email-stefanha@gmail.com> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.214.45 Cc: Stefan Weil , qemu-devel@nongnu.org, Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 09/12] hw: Add missing 'static' attribute for QEMUMachine X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Stefan Weil It was missing for leon3 and mips_fulong2e. Signed-off-by: Stefan Weil Reviewed-by: Andreas Färber Signed-off-by: Stefan Hajnoczi --- hw/leon3.c | 2 +- hw/mips_fulong2e.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/leon3.c b/hw/leon3.c index 878d3aa..7a9729d 100644 --- a/hw/leon3.c +++ b/hw/leon3.c @@ -210,7 +210,7 @@ static void leon3_generic_hw_init(ram_addr_t ram_size, } } -QEMUMachine leon3_generic_machine = { +static QEMUMachine leon3_generic_machine = { .name = "leon3_generic", .desc = "Leon-3 generic", .init = leon3_generic_hw_init, diff --git a/hw/mips_fulong2e.c b/hw/mips_fulong2e.c index 38e4b86..d4a8672 100644 --- a/hw/mips_fulong2e.c +++ b/hw/mips_fulong2e.c @@ -392,7 +392,7 @@ static void mips_fulong2e_init(ram_addr_t ram_size, const char *boot_device, network_init(); } -QEMUMachine mips_fulong2e_machine = { +static QEMUMachine mips_fulong2e_machine = { .name = "fulong2e", .desc = "Fulong 2e mini pc", .init = mips_fulong2e_init,