From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K0a4j-0006LL-7O for qemu-devel@nongnu.org; Mon, 26 May 2008 06:37:09 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K0a4Z-0006Ev-M3 for qemu-devel@nongnu.org; Mon, 26 May 2008 06:37:01 -0400 Received: from [199.232.76.173] (port=49692 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K0a4Z-0006ES-BL for qemu-devel@nongnu.org; Mon, 26 May 2008 06:36:59 -0400 Received: from il.qumranet.com ([212.179.150.194]:44098) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K0a4Y-0003VJ-8F for qemu-devel@nongnu.org; Mon, 26 May 2008 06:36:58 -0400 From: Amit Shah Date: Mon, 26 May 2008 13:36:43 +0300 Message-Id: <1211798213-4187-7-git-send-email-amit.shah@qumranet.com> In-Reply-To: <1211798213-4187-6-git-send-email-amit.shah@qumranet.com> References: <1211798213-4187-1-git-send-email-amit.shah@qumranet.com> <1211798213-4187-2-git-send-email-amit.shah@qumranet.com> <1211798213-4187-3-git-send-email-amit.shah@qumranet.com> <1211798213-4187-4-git-send-email-amit.shah@qumranet.com> <1211798213-4187-5-git-send-email-amit.shah@qumranet.com> <1211798213-4187-6-git-send-email-amit.shah@qumranet.com> Subject: [Qemu-devel] [PATCH 04/14] QEMU: Fill in PCI subsystem vendor id for eepro100 Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Amit Shah , kvm@vger.kernel.org The subsystem vendor ID shouldn't be 0x0 or 0xffff according to the PCI spec Signed-off-by: Amit Shah --- qemu/hw/eepro100.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/qemu/hw/eepro100.c b/qemu/hw/eepro100.c index ccb5f8b..b49b774 100644 --- a/qemu/hw/eepro100.c +++ b/qemu/hw/eepro100.c @@ -64,6 +64,8 @@ #define PCI_BASE_ADDRESS_4 0x20 /* 32 bits */ #define PCI_BASE_ADDRESS_5 0x24 /* 32 bits */ +#define PCI_SUBSYSTEM_VENDOR_ID 0x2c /* 16 bits */ + #define PCI_CONFIG_8(offset, value) \ (pci_conf[offset] = (value)) #define PCI_CONFIG_16(offset, value) \ @@ -423,6 +425,7 @@ static void pci_reset(EEPRO100State * s) /* PCI Vendor ID */ PCI_CONFIG_16(PCI_VENDOR_ID, 0x8086); + PCI_CONFIG_16(PCI_SUBSYSTEM_VENDOR_ID, 0x8086); /* PCI Device ID */ PCI_CONFIG_16(PCI_DEVICE_ID, 0x1209); /* PCI Command */ -- 1.5.5.1