qemu-devel
[Top][All Lists]
Advanced

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

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


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

diff --git a/qemu/hw/e1000.c b/qemu/hw/e1000.c
index 01f8983..bda6b5e 100644
--- a/qemu/hw/e1000.c
+++ b/qemu/hw/e1000.c
@@ -977,6 +977,7 @@ pci_e1000_init(PCIBus *bus, NICInfo *nd, int devfn)
     pci_conf[0x0a] = 0x00; // ethernet network controller
     pci_conf[0x0b] = 0x02;
     pci_conf[0x0c] = 0x10;
+    *(uint16_t *)(pci_conf+0x2c) = cpu_to_le16(0x8086);
 
     pci_conf[0x3d] = 1; // interrupt pin 0
 
-- 
1.5.5.1





reply via email to

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