PCI: spear: Fix Section mismatch compilation warning for probe()
authorViresh Kumar <viresh.kumar@linaro.org>
Sun, 20 Jul 2014 11:59:47 +0000 (17:29 +0530)
committerOlof Johansson <olof@lixom.net>
Sun, 20 Jul 2014 19:27:29 +0000 (12:27 -0700)
Following compilation warning occurs when compiled with:
CONFIG_DEBUG_SECTION_MISMATCH=y

 WARNING: drivers/pci/host/built-in.o(.data+0xc0): Section mismatch in
 reference from the variable spear13xx_pcie_driver to the function
 .init.text:spear13xx_pcie_probe()

Both .probe() and pcie_init() are marked with __init, but spear13xx_pcie_driver
isn't. And so section mismatch.

Fix it by marking spear13xx_pcie_driver with __initdata.

Fixes: 51b66a6ce125 (PCI: spear: Add PCIe driver for ST Microelectronics SPEAr13xx)
Reported-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
drivers/pci/host/pcie-spear13xx.c

index 99738e4..67315ea 100644 (file)
@@ -382,7 +382,7 @@ static const struct of_device_id spear13xx_pcie_of_match[] = {
 };
 MODULE_DEVICE_TABLE(of, spear13xx_pcie_of_match);
 
-static struct platform_driver spear13xx_pcie_driver = {
+static struct platform_driver spear13xx_pcie_driver __initdata = {
        .probe          = spear13xx_pcie_probe,
        .remove         = spear13xx_pcie_remove,
        .driver = {