From patchwork Tue Nov 26 08:33:29 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Vasut X-Patchwork-Id: 1200828 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=denx.de Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 47Mcjn441cz9sP3 for ; Tue, 26 Nov 2019 19:38:05 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 2BBBEC21FC5; Tue, 26 Nov 2019 08:35:32 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 4650AC21F74; Tue, 26 Nov 2019 08:35:31 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id DD705C21F99; Tue, 26 Nov 2019 08:33:33 +0000 (UTC) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by lists.denx.de (Postfix) with ESMTPS id 7C64AC21FA1 for ; Tue, 26 Nov 2019 08:33:33 +0000 (UTC) Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 47MccY2JbVz1qqtW; Tue, 26 Nov 2019 09:33:33 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 47MccY1qnbz1qt2w; Tue, 26 Nov 2019 09:33:33 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id K4X2Tb4Ofnhj; Tue, 26 Nov 2019 09:33:32 +0100 (CET) X-Auth-Info: FVTzRE4XOLMndAY22YIeENEKmch+Bh+56NET0POAiYs= Received: from chi.lan (unknown [62.91.23.180]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Tue, 26 Nov 2019 09:33:32 +0100 (CET) From: Marek Vasut To: u-boot@lists.denx.de Date: Tue, 26 Nov 2019 09:33:29 +0100 Message-Id: <20191126083329.4478-1-marex@denx.de> X-Mailer: git-send-email 2.24.0 MIME-Version: 1.0 Cc: Marek Vasut , Fabio Estevam Subject: [U-Boot] [PATCH] pci: imx: Add iMX6SX compatible X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" The driver works fine with iMX6SX, add the missing compatible string. Signed-off-by: Marek Vasut Cc: Bin Meng Cc: Fabio Estevam Cc: Stefano Babic --- drivers/pci/pcie_imx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pci/pcie_imx.c b/drivers/pci/pcie_imx.c index 10b8fb4c88..c055ee5ddb 100644 --- a/drivers/pci/pcie_imx.c +++ b/drivers/pci/pcie_imx.c @@ -814,6 +814,7 @@ static const struct dm_pci_ops imx_pcie_ops = { static const struct udevice_id imx_pcie_ids[] = { { .compatible = "fsl,imx6q-pcie" }, + { .compatible = "fsl,imx6sx-pcie" }, { } };