From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41155) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a8RU1-0003R8-5l for qemu-devel@nongnu.org; Mon, 14 Dec 2015 06:40:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a8RU0-0001FM-4a for qemu-devel@nongnu.org; Mon, 14 Dec 2015 06:40:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57881) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a8RTz-0001F3-VL for qemu-devel@nongnu.org; Mon, 14 Dec 2015 06:40:00 -0500 From: Gerd Hoffmann Date: Mon, 14 Dec 2015 12:39:38 +0100 Message-Id: <1450093182-3500-8-git-send-email-kraxel@redhat.com> In-Reply-To: <1450093182-3500-1-git-send-email-kraxel@redhat.com> References: <1450093182-3500-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 06/10] igd: use defines for standard pci config space offsets List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: igvt-g@ml01.01.org, xen-devel@lists.xensource.com, Eduardo Habkost , Stefano Stabellini , Gerd Hoffmann , vfio-users@redhat.com Signed-off-by: Gerd Hoffmann --- hw/pci-host/igd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/pci-host/igd.c b/hw/pci-host/igd.c index 6f52ab1..0784128 100644 --- a/hw/pci-host/igd.c +++ b/hw/pci-host/igd.c @@ -10,9 +10,9 @@ typedef struct { /* Here we just expose minimal host bridge offset subset. */ static const IGDHostInfo igd_host_bridge_infos[] = { - {0x08, 2}, /* revision id */ - {0x2c, 2}, /* sybsystem vendor id */ - {0x2e, 2}, /* sybsystem id */ + {PCI_REVISION_ID, 2}, + {PCI_SUBSYSTEM_VENDOR_ID, 2}, + {PCI_SUBSYSTEM_ID, 2}, {0x50, 2}, /* SNB: processor graphics control register */ {0x52, 2}, /* processor graphics control register */ {0xa4, 4}, /* SNB: graphics base of stolen memory */ -- 1.8.3.1