From: Marek Vasut Date: Sun, 9 Jun 2019 01:50:51 +0000 (+0200) Subject: ARM: imx: Call imx_pcie_remove() only for non-DM PCI driver X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=42dc1230cdec48d0278dcc683bc14527cbea12c5;p=project%2Fbcm63xx%2Fu-boot.git ARM: imx: Call imx_pcie_remove() only for non-DM PCI driver The DM iMX PCI driver has DM_FLAG_OS_PREPARE set and will call imx_pcie_remove() from the .remove callback. Do not call it from the architecture code again. Signed-off-by: Marek Vasut Cc: Bin Meng Cc: Fabio Estevam Cc: Stefano Babic Reviewed-by: Bin Meng --- diff --git a/arch/arm/mach-imx/cpu.c b/arch/arm/mach-imx/cpu.c index 6b83f92662..93e60b2039 100644 --- a/arch/arm/mach-imx/cpu.c +++ b/arch/arm/mach-imx/cpu.c @@ -285,7 +285,7 @@ u32 get_ahb_clk(void) void arch_preboot_os(void) { -#if defined(CONFIG_PCIE_IMX) +#if defined(CONFIG_PCIE_IMX) && !CONFIG_IS_ENABLED(DM_PCI) imx_pcie_remove(); #endif #if defined(CONFIG_SATA)