From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:58270) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzZpb-0003v4-K9 for qemu-devel@nongnu.org; Mon, 20 Feb 2012 15:27:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RzZpa-0004EP-Op for qemu-devel@nongnu.org; Mon, 20 Feb 2012 15:27:31 -0500 Received: from mx1.redhat.com ([209.132.183.28]:61035) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzZpa-0004DY-Fr for qemu-devel@nongnu.org; Mon, 20 Feb 2012 15:27:30 -0500 Date: Mon, 20 Feb 2012 22:27:28 +0200 From: "Michael S. Tsirkin" Message-ID: <20120220202728.GC18751@redhat.com> References: <1329498525-8454-1-git-send-email-anthony.perard@citrix.com> <1329498525-8454-3-git-send-email-anthony.perard@citrix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1329498525-8454-3-git-send-email-anthony.perard@citrix.com> Subject: Re: [Qemu-devel] [PATCH V7 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: Anthony PERARD Cc: Xen Devel , QEMU-devel , Stefano Stabellini On Fri, Feb 17, 2012 at 05:08:36PM +0000, Anthony PERARD wrote: > Value check in PCI Express Base Specification rev 1.1 > > Signed-off-by: Anthony PERARD Thanks, applied. > --- > 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 >