From patchwork Wed Aug 15 19:17:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 177774 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 235032C0092 for ; Thu, 16 Aug 2012 05:26:21 +1000 (EST) Received: from localhost ([::1]:56640 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1j78-0001ji-9e for incoming@patchwork.ozlabs.org; Wed, 15 Aug 2012 15:18:46 -0400 Received: from eggs.gnu.org ([208.118.235.92]:32787) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1j6A-0007xg-Ew for qemu-devel@nongnu.org; Wed, 15 Aug 2012 15:17:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T1j69-0004GP-2S for qemu-devel@nongnu.org; Wed, 15 Aug 2012 15:17:46 -0400 Received: from oxygen.pond.sub.org ([78.46.104.156]:35603) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1j68-0004G2-Ru for qemu-devel@nongnu.org; Wed, 15 Aug 2012 15:17:44 -0400 Received: from blackfin.pond.sub.org (p57B0FBD1.dip.t-dialin.net [87.176.251.209]) by oxygen.pond.sub.org (Postfix) with ESMTPA id 62179A3E5B; Wed, 15 Aug 2012 21:17:42 +0200 (CEST) Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id 8D3B42006A; Wed, 15 Aug 2012 21:17:41 +0200 (CEST) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Wed, 15 Aug 2012 21:17:26 +0200 Message-Id: <1345058260-16229-14-git-send-email-armbru@redhat.com> X-Mailer: git-send-email 1.7.11.2 In-Reply-To: <1345058260-16229-1-git-send-email-armbru@redhat.com> References: <1345058260-16229-1-git-send-email-armbru@redhat.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 78.46.104.156 Cc: anthony@codemonkey.ws Subject: [Qemu-devel] [PATCH v2 for-1.2 13/27] collie gumstix mainstone tosa vexpress z2: Suppress unused default drives 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 Suppress default floppy and CD-ROM drives for machines collie, connex, verdex, mainstone, tosa, vexpress-a9, vexpress-a15, z2. Suppress default SD card drive for machine collie. Signed-off-by: Markus Armbruster --- hw/collie.c | 3 --- hw/gumstix.c | 4 ---- hw/mainstone.c | 2 -- hw/tosa.c | 2 -- hw/vexpress.c | 4 ---- hw/z2.c | 2 -- 6 files changed, 17 deletions(-) diff --git a/hw/collie.c b/hw/collie.c index 8c0fecd..56f89a9 100644 --- a/hw/collie.c +++ b/hw/collie.c @@ -61,9 +61,6 @@ static QEMUMachine collie_machine = { .name = "collie", .desc = "Collie PDA (SA-1110)", .init = collie_init, - .use_floppy = 1, - .use_cdrom = 1, - .use_sdcard = 1, }; static void collie_machine_init(void) diff --git a/hw/gumstix.c b/hw/gumstix.c index 955acfe..9250117 100644 --- a/hw/gumstix.c +++ b/hw/gumstix.c @@ -127,8 +127,6 @@ static QEMUMachine connex_machine = { .name = "connex", .desc = "Gumstix Connex (PXA255)", .init = connex_init, - .use_floppy = 1, - .use_cdrom = 1, .use_sdcard = 1, }; @@ -136,8 +134,6 @@ static QEMUMachine verdex_machine = { .name = "verdex", .desc = "Gumstix Verdex (PXA270)", .init = verdex_init, - .use_floppy = 1, - .use_cdrom = 1, .use_sdcard = 1, }; diff --git a/hw/mainstone.c b/hw/mainstone.c index 29b24ac..09d49cb 100644 --- a/hw/mainstone.c +++ b/hw/mainstone.c @@ -184,8 +184,6 @@ static QEMUMachine mainstone2_machine = { .name = "mainstone", .desc = "Mainstone II (PXA27x)", .init = mainstone_init, - .use_floppy = 1, - .use_cdrom = 1, .use_sdcard = 1, }; diff --git a/hw/tosa.c b/hw/tosa.c index 59629a2..2973e0a 100644 --- a/hw/tosa.c +++ b/hw/tosa.c @@ -250,8 +250,6 @@ static QEMUMachine tosapda_machine = { .name = "tosa", .desc = "Tosa PDA (PXA255)", .init = tosa_init, - .use_floppy = 1, - .use_cdrom = 1, .use_sdcard = 1, }; diff --git a/hw/vexpress.c b/hw/vexpress.c index 3f01654..7c0becc 100644 --- a/hw/vexpress.c +++ b/hw/vexpress.c @@ -478,8 +478,6 @@ static QEMUMachine vexpress_a9_machine = { .init = vexpress_a9_init, .use_scsi = 1, .max_cpus = 4, - .use_floppy = 1, - .use_cdrom = 1, .use_sdcard = 1, }; @@ -489,8 +487,6 @@ static QEMUMachine vexpress_a15_machine = { .init = vexpress_a15_init, .use_scsi = 1, .max_cpus = 4, - .use_floppy = 1, - .use_cdrom = 1, .use_sdcard = 1, }; diff --git a/hw/z2.c b/hw/z2.c index 97cf093..f29978d 100644 --- a/hw/z2.c +++ b/hw/z2.c @@ -371,8 +371,6 @@ static QEMUMachine z2_machine = { .name = "z2", .desc = "Zipit Z2 (PXA27x)", .init = z2_init, - .use_floppy = 1, - .use_cdrom = 1, .use_sdcard = 1, };