diff mbox

[v2,for-1.2,16/27] lm32: Suppress unused default drives

Message ID 1345058260-16229-17-git-send-email-armbru@redhat.com
State New
Headers show

Commit Message

Markus Armbruster Aug. 15, 2012, 7:17 p.m. UTC
Cc: Michael Walle <michael@walle.cc>

Suppress default floppy and CD-ROM drives for machines lm32-evr,
lm32-uclinux, milkymist.

Suppress default SD card drive for machines lm32-evr, lm32-uclinux.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 hw/lm32_boards.c | 6 ------
 hw/milkymist.c   | 2 --
 2 files changed, 8 deletions(-)
diff mbox

Patch

diff --git a/hw/lm32_boards.c b/hw/lm32_boards.c
index 3ed984d..b76d800 100644
--- a/hw/lm32_boards.c
+++ b/hw/lm32_boards.c
@@ -290,9 +290,6 @@  static QEMUMachine lm32_evr_machine = {
     .name = "lm32-evr",
     .desc = "LatticeMico32 EVR32 eval system",
     .init = lm32_evr_init,
-    .use_floppy = 1,
-    .use_cdrom = 1,
-    .use_sdcard = 1,
     .is_default = 1
 };
 
@@ -300,9 +297,6 @@  static QEMUMachine lm32_uclinux_machine = {
     .name = "lm32-uclinux",
     .desc = "lm32 platform for uClinux and u-boot by Theobroma Systems",
     .init = lm32_uclinux_init,
-    .use_floppy = 1,
-    .use_cdrom = 1,
-    .use_sdcard = 1,
     .is_default = 0
 };
 
diff --git a/hw/milkymist.c b/hw/milkymist.c
index 194d3b5..c1aaeab 100644
--- a/hw/milkymist.c
+++ b/hw/milkymist.c
@@ -207,8 +207,6 @@  static QEMUMachine milkymist_machine = {
     .name = "milkymist",
     .desc = "Milkymist One",
     .init = milkymist_init,
-    .use_floppy = 1,
-    .use_cdrom = 1,
     .use_sdcard = 1,
     .is_default = 0
 };