From patchwork Wed Jul 25 21:59:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Timur Tabi X-Patchwork-Id: 173291 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [IPv6:::1]) by ozlabs.org (Postfix) with ESMTP id D5DF62C03CF for ; Thu, 26 Jul 2012 08:00:33 +1000 (EST) Received: by ozlabs.org (Postfix) id 180642C0096; Thu, 26 Jul 2012 08:00:05 +1000 (EST) Delivered-To: linuxppc-dev@ozlabs.org Received: from tx2outboundpool.messaging.microsoft.com (tx2ehsobe005.messaging.microsoft.com [65.55.88.15]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client CN "mail.global.frontbridge.com", Issuer "Microsoft Secure Server Authority" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 974532C008C for ; Thu, 26 Jul 2012 08:00:02 +1000 (EST) Received: from mail189-tx2-R.bigfish.com (10.9.14.236) by TX2EHSOBE015.bigfish.com (10.9.40.35) with Microsoft SMTP Server id 14.1.225.23; Wed, 25 Jul 2012 21:59:59 +0000 Received: from mail189-tx2 (localhost [127.0.0.1]) by mail189-tx2-R.bigfish.com (Postfix) with ESMTP id E8167540144; Wed, 25 Jul 2012 21:59:59 +0000 (UTC) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPV:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-SpamScore: 3 X-BigFish: VS3(z37d5kzzz1202hzz8275bhz2dh2a8h668h839hd24he5bhf0ah107ah) Received: from mail189-tx2 (localhost.localdomain [127.0.0.1]) by mail189-tx2 (MessageSwitch) id 1343253597984406_798; Wed, 25 Jul 2012 21:59:57 +0000 (UTC) Received: from TX2EHSMHS039.bigfish.com (unknown [10.9.14.249]) by mail189-tx2.bigfish.com (Postfix) with ESMTP id E3233820045; Wed, 25 Jul 2012 21:59:57 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by TX2EHSMHS039.bigfish.com (10.9.99.139) with Microsoft SMTP Server (TLS) id 14.1.225.23; Wed, 25 Jul 2012 21:59:57 +0000 Received: from tx30smr01.am.freescale.net (10.81.153.31) by 039-SN1MMR1-002.039d.mgd.msft.net (10.84.1.15) with Microsoft SMTP Server (TLS) id 14.2.298.5; Wed, 25 Jul 2012 16:59:56 -0500 Received: from efes.am.freescale.net (efes.am.freescale.net [10.82.123.3]) by tx30smr01.am.freescale.net (8.14.3/8.14.0) with ESMTP id q6PLxpmA031680; Wed, 25 Jul 2012 14:59:53 -0700 From: Timur Tabi To: Kumar Gala , Kim Phillips , , Scott Wood Subject: [PATCH 1/3] powerpc/fsl-pci: add fsl, qoriq-pcie-v2.4 compatible string Date: Wed, 25 Jul 2012 16:59:48 -0500 Message-ID: <1343253590-15263-1-git-send-email-timur@freescale.com> X-Mailer: git-send-email 1.7.3.4 MIME-Version: 1.0 X-OriginatorOrg: freescale.com X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Sender: "Linuxppc-dev" The PCI controller on the Freescale P5040 is v2.4. Signed-off-by: Timur Tabi --- arch/powerpc/sysdev/fsl_pci.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c index a7b2a60..50a38b3 100644 --- a/arch/powerpc/sysdev/fsl_pci.c +++ b/arch/powerpc/sysdev/fsl_pci.c @@ -818,6 +818,7 @@ static const struct of_device_id pci_ids[] = { { .compatible = "fsl,p1010-pcie", }, { .compatible = "fsl,p1023-pcie", }, { .compatible = "fsl,p4080-pcie", }, + { .compatible = "fsl,qoriq-pcie-v2.4", }, { .compatible = "fsl,qoriq-pcie-v2.3", }, { .compatible = "fsl,qoriq-pcie-v2.2", }, {},