From: Bharat Bhushan Date: Wed, 22 Mar 2017 06:36:30 +0000 (+0530) Subject: pcie-layerscape: Initialize pci-lut for NXP chasis-2 socs X-Git-Tag: v2017.05-rc1~6^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=47d1736231dcad185662222754e1015dc025f67a;p=platform%2Fkernel%2Fu-boot.git pcie-layerscape: Initialize pci-lut for NXP chasis-2 socs Layerscape Chasis-2 also uses same PCIe controller as Chasis-3 and have similar PCI-Lut. Signed-off-by: Bharat Bhushan Reviewed-by: York Sun --- diff --git a/drivers/pci/pcie_layerscape_fixup.c b/drivers/pci/pcie_layerscape_fixup.c index 64e461e..d7591bc 100644 --- a/drivers/pci/pcie_layerscape_fixup.c +++ b/drivers/pci/pcie_layerscape_fixup.c @@ -15,7 +15,7 @@ #include #include "pcie_layerscape.h" -#ifdef CONFIG_FSL_LSCH3 +#if defined(CONFIG_FSL_LSCH3) || defined(CONFIG_FSL_LSCH2) /* * Return next available LUT index. */ @@ -188,7 +188,7 @@ void ft_pci_setup(void *blob, bd_t *bd) list_for_each_entry(pcie, &ls_pcie_list, list) ft_pcie_ls_setup(blob, pcie); -#ifdef CONFIG_FSL_LSCH3 +#if defined(CONFIG_FSL_LSCH3) || defined(CONFIG_FSL_LSCH2) fdt_fixup_pcie(blob); #endif }