From c5773ccdca8a6a5b534234f0e9fc62d6ce0161ea Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Tue, 26 Nov 2019 09:33:29 +0100 Subject: [PATCH] pci: imx: Add iMX6SX compatible 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 d53d6298bf..3621636cb2 100644 --- a/drivers/pci/pcie_imx.c +++ b/drivers/pci/pcie_imx.c @@ -815,6 +815,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" }, { } }; -- 2.25.1