qemu-devel
[Top][All Lists]
Advanced

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

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


From: Amit Shah
Subject: [Qemu-devel] [PATCH 01/14] QEMU: Fill in PCI subsystem vendor id for acpi
Date: Mon, 26 May 2008 13:36:38 +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/acpi.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/qemu/hw/acpi.c b/qemu/hw/acpi.c
index c305702..1ab031a 100644
--- a/qemu/hw/acpi.c
+++ b/qemu/hw/acpi.c
@@ -486,8 +486,8 @@ i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t 
smb_io_base,
                                          devfn, NULL, pm_write_config);
     pm_state = s;
     pci_conf = s->dev.config;
-    pci_conf[0x00] = 0x86;
-    pci_conf[0x01] = 0x80;
+    pci_conf[0x00] = pci_conf[0x2c] = 0x86;
+    pci_conf[0x01] = pci_conf[0x2d] = 0x80;
     pci_conf[0x02] = 0x13;
     pci_conf[0x03] = 0x71;
     pci_conf[0x06] = 0x80;
-- 
1.5.5.1





reply via email to

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