From patchwork Wed Aug 15 19:17:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 177788 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 C526C2C0084 for ; Thu, 16 Aug 2012 06:04:31 +1000 (EST) Received: from localhost ([::1]:57014 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1j7I-0001wP-7b for incoming@patchwork.ozlabs.org; Wed, 15 Aug 2012 15:18:56 -0400 Received: from eggs.gnu.org ([208.118.235.92]:32880) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1j6D-0007zH-Or for qemu-devel@nongnu.org; Wed, 15 Aug 2012 15:17:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T1j69-0004H3-4O for qemu-devel@nongnu.org; Wed, 15 Aug 2012 15:17:49 -0400 Received: from oxygen.pond.sub.org ([78.46.104.156]:35608) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T1j68-0004GC-TX for qemu-devel@nongnu.org; Wed, 15 Aug 2012 15:17:45 -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 DA597A3E5F; Wed, 15 Aug 2012 21:17:42 +0200 (CEST) Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id ED06A20070; Wed, 15 Aug 2012 21:17:41 +0200 (CEST) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Wed, 15 Aug 2012 21:17:31 +0200 Message-Id: <1345058260-16229-19-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: Peter Crosthwaite , anthony@codemonkey.ws Subject: [Qemu-devel] [PATCH v2 for-1.2 18/27] microblaze: 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 Cc: Peter Crosthwaite Suppress default floppy, CD-ROM and SD card drives for machines petalogix-ml605 and petalogix-s3adsp1800. Signed-off-by: Markus Armbruster Reviewed-by: Peter Crosthwaite --- hw/petalogix_ml605_mmu.c | 3 --- hw/petalogix_s3adsp1800_mmu.c | 3 --- 2 files changed, 6 deletions(-) diff --git a/hw/petalogix_ml605_mmu.c b/hw/petalogix_ml605_mmu.c index 7703d54..dced648 100644 --- a/hw/petalogix_ml605_mmu.c +++ b/hw/petalogix_ml605_mmu.c @@ -148,9 +148,6 @@ static QEMUMachine petalogix_ml605_machine = { .name = "petalogix-ml605", .desc = "PetaLogix linux refdesign for xilinx ml605 little endian", .init = petalogix_ml605_init, - .use_floppy = 1, - .use_cdrom = 1, - .use_sdcard = 1, .is_default = 0 }; diff --git a/hw/petalogix_s3adsp1800_mmu.c b/hw/petalogix_s3adsp1800_mmu.c index d534c07..2cf6882 100644 --- a/hw/petalogix_s3adsp1800_mmu.c +++ b/hw/petalogix_s3adsp1800_mmu.c @@ -117,9 +117,6 @@ static QEMUMachine petalogix_s3adsp1800_machine = { .name = "petalogix-s3adsp1800", .desc = "PetaLogix linux refdesign for xilinx Spartan 3ADSP1800", .init = petalogix_s3adsp1800_init, - .use_floppy = 1, - .use_cdrom = 1, - .use_sdcard = 1, .is_default = 1 };