qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [5987] pci: virtio: use pci id defines (Gerd Hoffman)
@ 2008-12-11 21:20 Anthony Liguori
  0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2008-12-11 21:20 UTC (permalink / raw)
  To: qemu-devel

Revision: 5987
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5987
Author:   aliguori
Date:     2008-12-11 21:20:03 +0000 (Thu, 11 Dec 2008)

Log Message:
-----------
pci: virtio: use pci id defines (Gerd Hoffman)

Use the defines added by the previous patch in the virtio drivers.
Also remove the pointless vendor and device args from the
virtio_blk_init() function.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>

Modified Paths:
--------------
    trunk/hw/pc.c
    trunk/hw/virtio-balloon.c
    trunk/hw/virtio-blk.c
    trunk/hw/virtio-blk.h

Modified: trunk/hw/pc.c
===================================================================
--- trunk/hw/pc.c	2008-12-11 21:15:42 UTC (rev 5986)
+++ trunk/hw/pc.c	2008-12-11 21:20:03 UTC (rev 5987)
@@ -1101,8 +1101,7 @@
         int unit_id = 0;
 
         while ((index = drive_get_index(IF_VIRTIO, 0, unit_id)) != -1) {
-            virtio_blk_init(pci_bus, 0x1AF4, 0x1001,
-                            drives_table[index].bdrv);
+            virtio_blk_init(pci_bus, drives_table[index].bdrv);
             unit_id++;
         }
     }

Modified: trunk/hw/virtio-balloon.c
===================================================================
--- trunk/hw/virtio-balloon.c	2008-12-11 21:15:42 UTC (rev 5986)
+++ trunk/hw/virtio-balloon.c	2008-12-11 21:20:03 UTC (rev 5987)
@@ -172,7 +172,8 @@
     VirtIOBalloon *s;
 
     s = (VirtIOBalloon *)virtio_init_pci(bus, "virtio-balloon",
-                                         6900, 0x1002,
+                                         PCI_VENDOR_ID_REDHAT_QUMRANET,
+                                         PCI_DEVICE_ID_VIRTIO_BALLOON,
                                          0, VIRTIO_ID_BALLOON,
                                          0x05, 0x00, 0x00,
                                          8, sizeof(VirtIOBalloon));

Modified: trunk/hw/virtio-blk.c
===================================================================
--- trunk/hw/virtio-blk.c	2008-12-11 21:15:42 UTC (rev 5986)
+++ trunk/hw/virtio-blk.c	2008-12-11 21:20:03 UTC (rev 5987)
@@ -218,14 +218,15 @@
     return 0;
 }
 
-void *virtio_blk_init(PCIBus *bus, uint16_t vendor, uint16_t device,
-                      BlockDriverState *bs)
+void *virtio_blk_init(PCIBus *bus, BlockDriverState *bs)
 {
     VirtIOBlock *s;
     int cylinders, heads, secs;
     static int virtio_blk_id;
 
-    s = (VirtIOBlock *)virtio_init_pci(bus, "virtio-blk", vendor, device,
+    s = (VirtIOBlock *)virtio_init_pci(bus, "virtio-blk",
+                                       PCI_VENDOR_ID_REDHAT_QUMRANET,
+                                       PCI_DEVICE_ID_VIRTIO_BLOCK,
                                        0, VIRTIO_ID_BLOCK,
                                        0x01, 0x80, 0x00,
                                        sizeof(struct virtio_blk_config), sizeof(VirtIOBlock));

Modified: trunk/hw/virtio-blk.h
===================================================================
--- trunk/hw/virtio-blk.h	2008-12-11 21:15:42 UTC (rev 5986)
+++ trunk/hw/virtio-blk.h	2008-12-11 21:20:03 UTC (rev 5987)
@@ -70,7 +70,6 @@
     unsigned char status;
 };
 
-void *virtio_blk_init(PCIBus *bus, uint16_t vendor, uint16_t device,
-                      BlockDriverState *bs);
+void *virtio_blk_init(PCIBus *bus, BlockDriverState *bs);
 
 #endif

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-12-11 21:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-11 21:20 [Qemu-devel] [5987] pci: virtio: use pci id defines (Gerd Hoffman) Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).