qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] ahci: use interface type IF_SATA


From: Sebastian Herbszt
Subject: [Qemu-devel] [PATCH] ahci: use interface type IF_SATA
Date: Tue, 11 May 2010 22:17:16 +0200

Use interface type IF_SATA instead of IF_SCSI.

Signed-off-by: Sebastian Herbszt <address@hidden>

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;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]