qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 14/14] QEMU: Fill in PCI subsystem vendor id for vga


From: Amit Shah
Subject: [Qemu-devel] [PATCH 14/14] QEMU: Fill in PCI subsystem vendor id for vga
Date: Mon, 26 May 2008 13:36:53 +0300

The subsystem vendor ID shouldn't be 0x0 or 0xffff according
to the PCI spec

Signed-off-by: Amit Shah <address@hidden>
---
 qemu/hw/vga.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/qemu/hw/vga.c b/qemu/hw/vga.c
index 3a49573..9bc867d 100644
--- a/qemu/hw/vga.c
+++ b/qemu/hw/vga.c
@@ -2406,8 +2406,8 @@ int pci_vga_init(PCIBus *bus, DisplayState *ds, uint8_t 
*vga_ram_base,
     s->pci_dev = &d->dev;
 
     pci_conf = d->dev.config;
-    pci_conf[0x00] = 0x34; // dummy VGA (same as Bochs ID)
-    pci_conf[0x01] = 0x12;
+    pci_conf[0x00] = pci_conf[0x2c] = 0x34; // dummy VGA (same as Bochs ID)
+    pci_conf[0x01] = pci_conf[0x2d] = 0x12;
     pci_conf[0x02] = 0x11;
     pci_conf[0x03] = 0x11;
     pci_conf[0x0a] = 0x00; // VGA controller
-- 
1.5.5.1





reply via email to

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