From patchwork Tue May 11 20:17:16 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: ahci: use interface type IF_SATA Date: Tue, 11 May 2010 10:17:16 -0000 From: Sebastian Herbszt X-Patchwork-Id: 52313 Message-Id: <1273609036$2303@local> To: qemu-devel@nongnu.org Cc: Sebastian Herbszt Use interface type IF_SATA instead of IF_SCSI. Signed-off-by: Sebastian Herbszt diff --git a/hw/ahci.c b/hw/ahci.c index 2763075..6f7b807 100644 --- a/hw/ahci.c +++ b/hw/ahci.c @@ -1160,7 +1160,7 @@ static AHCIState *ahci_new(void) s->timer = qemu_new_timer(vm_clock, ahci_timer_function, s); s->prdt_buf = qemu_malloc(65535*32); - if ((dinfo = drive_get(IF_SCSI, 0, 0)) != NULL) + if ((dinfo = drive_get(IF_SATA, 0, 0)) != NULL) { ide_init2(bus, dinfo, NULL,0); s->ide=bus;