From: Hervé Poussineau Date: Tue, 18 Jan 2011 21:43:56 +0000 (+0100) Subject: prep: Disable second IDE channel, as long as ISA IDE emulation doesn't support same... X-Git-Tag: v0.14.0-rc0~54 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=491e2a338fdf8310c84f6ebaed1683a871a0700e;p=users%2Fdwmw2%2Fqemu.git prep: Disable second IDE channel, as long as ISA IDE emulation doesn't support same irq for both channels Cc: Andreas Färber Signed-off-by: Hervé Poussineau Signed-off-by: Aurelien Jarno --- diff --git a/hw/ppc_prep.c b/hw/ppc_prep.c index 6b221221c2..6c1499a780 100644 --- a/hw/ppc_prep.c +++ b/hw/ppc_prep.c @@ -690,7 +690,7 @@ static void ppc_prep_init (ram_addr_t ram_size, hd[i] = drive_get(IF_IDE, i / MAX_IDE_DEVS, i % MAX_IDE_DEVS); } - for(i = 0; i < MAX_IDE_BUS; i++) { + for(i = 0; i < 1/*MAX_IDE_BUS*/; i++) { isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i], hd[2 * i], hd[2 * i + 1]);