diff mbox

[1/4] kvm tools: Fix virtio console pci class number and device id number

Message ID 1302624856-884-1-git-send-email-asias.hejun@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Asias He April 12, 2011, 4:14 p.m. UTC
Make lscpi report  correct device name

Signed-off-by: Asias He <asias.hejun@gmail.com>
---
 tools/kvm/virtio-console.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/tools/kvm/virtio-console.c b/tools/kvm/virtio-console.c
index a140aea..9675090 100644
--- a/tools/kvm/virtio-console.c
+++ b/tools/kvm/virtio-console.c
@@ -212,7 +212,7 @@  static struct ioport_operations virtio_console_io_ops = {
 };
 
 #define PCI_VENDOR_ID_REDHAT_QUMRANET		0x1af4
-#define PCI_DEVICE_ID_VIRTIO_CONSOLE		0x1002
+#define PCI_DEVICE_ID_VIRTIO_CONSOLE		0x1003
 #define PCI_SUBSYSTEM_VENDOR_ID_REDHAT_QUMRANET	0x1af4
 #define PCI_SUBSYSTEM_ID_VIRTIO_CONSOLE		0x0003
 
@@ -221,7 +221,7 @@  static struct pci_device_header virtio_console_pci_device = {
 	.device_id		= PCI_DEVICE_ID_VIRTIO_CONSOLE,
 	.header_type		= PCI_HEADER_TYPE_NORMAL,
 	.revision_id		= 0,
-	.class			= (0x07 << 8) | (0x80 << 4) | (0x0 << 0),
+	.class			= 0x078000,
 	.subsys_vendor_id	= PCI_SUBSYSTEM_VENDOR_ID_REDHAT_QUMRANET,
 	.subsys_id		= PCI_SUBSYSTEM_ID_VIRTIO_CONSOLE,
 	.bar[0]			= IOPORT_VIRTIO_CONSOLE | PCI_BASE_ADDRESS_SPACE_IO,