From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:36768) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RwutS-0000H9-5x for qemu-devel@nongnu.org; Mon, 13 Feb 2012 07:20:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RwutM-00067Z-Uf for qemu-devel@nongnu.org; Mon, 13 Feb 2012 07:20:30 -0500 Received: from smtp.citrix.com ([66.165.176.89]:54855) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RwutM-00066y-Rc for qemu-devel@nongnu.org; Mon, 13 Feb 2012 07:20:24 -0500 From: Anthony PERARD Date: Mon, 13 Feb 2012 12:20:04 +0000 Message-ID: <1329135613-26061-3-git-send-email-anthony.perard@citrix.com> In-Reply-To: <1329135613-26061-1-git-send-email-anthony.perard@citrix.com> References: <1329135613-26061-1-git-send-email-anthony.perard@citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH V6 02/11] pci_regs: Fix value of PCI_EXP_TYPE_RC_EC. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU-devel Cc: Anthony PERARD , Xen Devel , Stefano Stabellini Value check in PCI Express Base Specification rev 1.1 Signed-off-by: Anthony PERARD --- hw/pci_regs.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/pci_regs.h b/hw/pci_regs.h index e8357c3..6b42515 100644 --- a/hw/pci_regs.h +++ b/hw/pci_regs.h @@ -393,7 +393,7 @@ #define PCI_EXP_TYPE_DOWNSTREAM 0x6 /* Downstream Port */ #define PCI_EXP_TYPE_PCI_BRIDGE 0x7 /* PCI/PCI-X Bridge */ #define PCI_EXP_TYPE_RC_END 0x9 /* Root Complex Integrated Endpoint */ -#define PCI_EXP_TYPE_RC_EC 0x10 /* Root Complex Event Collector */ +#define PCI_EXP_TYPE_RC_EC 0xa /* Root Complex Event Collector */ #define PCI_EXP_FLAGS_SLOT 0x0100 /* Slot implemented */ #define PCI_EXP_FLAGS_IRQ 0x3e00 /* Interrupt message number */ #define PCI_EXP_DEVCAP 4 /* Device capabilities */ -- Anthony PERARD