From patchwork Tue Feb 21 16:22:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anthony PERARD X-Patchwork-Id: 142317 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 4DCA6B6FA8 for ; Wed, 22 Feb 2012 03:23:38 +1100 (EST) Received: from localhost ([::1]:39052 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzsV4-0000l0-U4 for incoming@patchwork.ozlabs.org; Tue, 21 Feb 2012 11:23:34 -0500 Received: from eggs.gnu.org ([140.186.70.92]:42485) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzsUv-0000kv-E9 for qemu-devel@nongnu.org; Tue, 21 Feb 2012 11:23:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RzsUu-0002di-Ba for qemu-devel@nongnu.org; Tue, 21 Feb 2012 11:23:25 -0500 Received: from smtp.citrix.com ([66.165.176.89]:48297) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzsUu-0002dX-8k for qemu-devel@nongnu.org; Tue, 21 Feb 2012 11:23:24 -0500 X-IronPort-AV: E=Sophos;i="4.73,458,1325480400"; d="scan'208";a="22299282" Received: from ftlpmailmx02.citrite.net ([10.13.107.66]) by FTLPIPO01.CITRIX.COM with ESMTP/TLS/RC4-MD5; 21 Feb 2012 11:23:22 -0500 Received: from ukmail1.uk.xensource.com (10.80.16.128) by smtprelay.citrix.com (10.13.107.66) with Microsoft SMTP Server id 8.3.213.0; Tue, 21 Feb 2012 11:23:22 -0500 Received: from [10.80.3.61] (helo=perard.uk.xensource.com) by ukmail1.uk.xensource.com with esmtp (Exim 4.69) (envelope-from ) id 1RzsUr-000217-Oh; Tue, 21 Feb 2012 16:23:21 +0000 From: Anthony PERARD To: linux-kernel@vger.kernel.org Date: Tue, 21 Feb 2012 16:22:10 +0000 Message-ID: <1329841330-14902-1-git-send-email-anthony.perard@citrix.com> X-Mailer: git-send-email 1.7.2.5 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 66.165.176.89 Cc: Anthony PERARD , linux-pci@vger.kernel.org, QEMU-devel , Jesse Barnes , "Michael S . Tsirkin" Subject: [Qemu-devel] PCI: Add PCI_EXP_TYPE_PCIE_BRIDGE value X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Anthony PERARD --- include/linux/pci_regs.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h index e41a10f..4b608f5 100644 --- a/include/linux/pci_regs.h +++ b/include/linux/pci_regs.h @@ -391,6 +391,7 @@ #define PCI_EXP_TYPE_UPSTREAM 0x5 /* Upstream Port */ #define PCI_EXP_TYPE_DOWNSTREAM 0x6 /* Downstream Port */ #define PCI_EXP_TYPE_PCI_BRIDGE 0x7 /* PCI/PCI-X Bridge */ +#define PCI_EXP_TYPE_PCIE_BRIDGE 0x8 /* PCI/PCI-X to PCIE Bridge */ #define PCI_EXP_TYPE_RC_END 0x9 /* Root Complex Integrated Endpoint */ #define PCI_EXP_TYPE_RC_EC 0xa /* Root Complex Event Collector */ #define PCI_EXP_FLAGS_SLOT 0x0100 /* Slot implemented */