From: Alex Williamson Date: Wed, 16 Nov 2011 16:24:16 +0000 (-0700) Subject: PCI: Fix PCI_EXP_TYPE_RC_EC value X-Git-Tag: v3.2.2~99 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1c3cd99e1c1e3a4a816cab64599b27553864396;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git PCI: Fix PCI_EXP_TYPE_RC_EC value commit 1830ea91c20b06608f7cdb2455ce05ba834b3214 upstream. Spec shows this as 1010b = 0xa Signed-off-by: Alex Williamson Signed-off-by: Jesse Barnes Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h index b5d9657..411c412 100644 --- a/include/linux/pci_regs.h +++ b/include/linux/pci_regs.h @@ -392,7 +392,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 */