lantiq: fix section mismatch in PCIe driver
Do not put the probe function into the __init section, but use the normal section. This fixes a section mismatch warning. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
2eed1179be
commit
136d4a0656
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
-static int __init ifx_pcie_bios_init(void)
|
-static int __init ifx_pcie_bios_init(void)
|
||||||
+static int __init ifx_pcie_bios_probe(struct platform_device *pdev)
|
+static int ifx_pcie_bios_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
+ struct device_node *node = pdev->dev.of_node;
|
+ struct device_node *node = pdev->dev.of_node;
|
||||||
void __iomem *io_map_base;
|
void __iomem *io_map_base;
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
-static int __init ifx_pcie_bios_init(void)
|
-static int __init ifx_pcie_bios_init(void)
|
||||||
+static int __init ifx_pcie_bios_probe(struct platform_device *pdev)
|
+static int ifx_pcie_bios_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
+ struct device_node *node = pdev->dev.of_node;
|
+ struct device_node *node = pdev->dev.of_node;
|
||||||
void __iomem *io_map_base;
|
void __iomem *io_map_base;
|
||||||
|
|
Loading…
Reference in a new issue