From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K0a4i-0006Kv-Cy for qemu-devel@nongnu.org; Mon, 26 May 2008 06:37:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K0a4c-0006I5-W9 for qemu-devel@nongnu.org; Mon, 26 May 2008 06:37:04 -0400 Received: from [199.232.76.173] (port=49705 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K0a4c-0006Hm-PR for qemu-devel@nongnu.org; Mon, 26 May 2008 06:37:02 -0400 Received: from mx20.gnu.org ([199.232.41.8]:6097) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1K0a4c-0003Wr-Dm for qemu-devel@nongnu.org; Mon, 26 May 2008 06:37:02 -0400 Received: from il.qumranet.com ([212.179.150.194]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K0a4b-0003uU-Jv for qemu-devel@nongnu.org; Mon, 26 May 2008 06:37:02 -0400 From: Amit Shah Date: Mon, 26 May 2008 13:36:53 +0300 Message-Id: <1211798213-4187-17-git-send-email-amit.shah@qumranet.com> In-Reply-To: <1211798213-4187-16-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> <1211798213-4187-7-git-send-email-amit.shah@qumranet.com> <1211798213-4187-8-git-send-email-amit.shah@qumranet.com> <1211798213-4187-9-git-send-email-amit.shah@qumranet.com> <1211798213-4187-10-git-send-email-amit.shah@qumranet.com> <1211798213-4187-11-git-send-email-amit.shah@qumranet.com> <1211798213-4187-12-git-send-email-amit.shah@qumranet.com> <1211798213-4187-13-git-send-email-amit.shah@qumranet.com> <1211798213-4187-14-git-send-email-amit.shah@qumranet.com> <1211798213-4187-15-git-send-email-amit.shah@qumranet.com> <1211798213-4187-16-git-send-email-amit.shah@qumranet.com> Subject: [Qemu-devel] [PATCH 14/14] QEMU: Fill in PCI subsystem vendor id for vga 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/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