diff options
author | Marek Vasut <marex@denx.de> | 2013-10-15 12:06:38 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-10-31 13:34:04 -0400 |
commit | f216f57ffe6eede3c8a763add65d331e688f8c56 (patch) | |
tree | 6a599a5cd5f7f0ffa37da69f6a3b32a20ae04cc6 | |
parent | 8bcadbe17207aee0df4a1f5cb41371d71bf3e4b0 (diff) |
PCI: imx6: Probe the PCIe in fs_initcall()
Probe the PCIe driver in fs_initcall() instead of module_init()
to assure that pci_assign_unassigned_resources() will be called
early. This function is called in dw_pcie_host_init(), which is
in turn called from imx6_add_pcie_port(), which is called from
imx6_pcie_probe(). If this is not called early, we will hit
resource collisions since pcieport driver is then probed way too
late.
Signed-off-by: Marek Vasut <marex@denx.de>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Cc: Frank Li <lznuaa@gmail.com>
Cc: Jingoo Han <jg1.han@samsung.com>
Cc: Mohit KUMAR <Mohit.KUMAR@st.com>
Cc: Pratyush Anand <pratyush.anand@st.com>
Cc: Richard Zhu <r65037@freescale.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Sean Cross <xobs@kosagi.com>
Cc: Siva Reddy Kallam <siva.kallam@samsung.com>
Cc: Srikanth T Shivanand <ts.srikanth@samsung.com>
Cc: Tim Harvey <tharvey@gateworks.com>
Cc: Troy Kisky <troy.kisky@boundarydevices.com>
Cc: Yinghai Lu <yinghai@kernel.org>
-rw-r--r-- | drivers/pci/host/pci-imx6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/host/pci-imx6.c b/drivers/pci/host/pci-imx6.c index 0a435b8f54c2..bd70af8f31ac 100644 --- a/drivers/pci/host/pci-imx6.c +++ b/drivers/pci/host/pci-imx6.c | |||
@@ -561,7 +561,7 @@ static int __init imx6_pcie_init(void) | |||
561 | { | 561 | { |
562 | return platform_driver_probe(&imx6_pcie_driver, imx6_pcie_probe); | 562 | return platform_driver_probe(&imx6_pcie_driver, imx6_pcie_probe); |
563 | } | 563 | } |
564 | module_init(imx6_pcie_init); | 564 | fs_initcall(imx6_pcie_init); |
565 | 565 | ||
566 | MODULE_AUTHOR("Sean Cross <xobs@kosagi.com>"); | 566 | MODULE_AUTHOR("Sean Cross <xobs@kosagi.com>"); |
567 | MODULE_DESCRIPTION("Freescale i.MX6 PCIe host controller driver"); | 567 | MODULE_DESCRIPTION("Freescale i.MX6 PCIe host controller driver"); |