bmips: pci: use standard module functions
late_initcall_sync() is no longer needed so standard module functions can be used on all bmips PCI/PCIe drivers. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
parent
77d85a1bd3
commit
b98955c623
3 changed files with 21 additions and 24 deletions
|
@ -13,6 +13,7 @@
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/memblock.h>
|
#include <linux/memblock.h>
|
||||||
#include <linux/mm.h>
|
#include <linux/mm.h>
|
||||||
|
#include <linux/module.h>
|
||||||
#include <linux/of_address.h>
|
#include <linux/of_address.h>
|
||||||
#include <linux/of_gpio.h>
|
#include <linux/of_gpio.h>
|
||||||
#include <linux/of_irq.h>
|
#include <linux/of_irq.h>
|
||||||
|
@ -797,6 +798,7 @@ static const struct of_device_id bcm6348_pci_of_match[] = {
|
||||||
{ .compatible = "brcm,bcm6348-pci", },
|
{ .compatible = "brcm,bcm6348-pci", },
|
||||||
{ /* sentinel */ }
|
{ /* sentinel */ }
|
||||||
};
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, bcm6348_pci_of_match);
|
||||||
|
|
||||||
static struct platform_driver bcm6348_pci_driver = {
|
static struct platform_driver bcm6348_pci_driver = {
|
||||||
.probe = bcm6348_pci_probe,
|
.probe = bcm6348_pci_probe,
|
||||||
|
@ -805,12 +807,9 @@ static struct platform_driver bcm6348_pci_driver = {
|
||||||
.of_match_table = bcm6348_pci_of_match,
|
.of_match_table = bcm6348_pci_of_match,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
module_platform_driver(bcm6348_pci_driver);
|
||||||
|
|
||||||
int __init bcm6348_pci_init(void)
|
MODULE_AUTHOR("Álvaro Fernández Rojas <noltari@gmail.com>");
|
||||||
{
|
MODULE_DESCRIPTION("BCM6348 PCI Controller Driver");
|
||||||
int ret = platform_driver_register(&bcm6348_pci_driver);
|
MODULE_LICENSE("GPL v2");
|
||||||
if (ret)
|
MODULE_ALIAS("platform:bcm6348-pci");
|
||||||
pr_err("pci-bcm6348: Error registering platform driver!\n");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
late_initcall_sync(bcm6348_pci_init);
|
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/mm.h>
|
#include <linux/mm.h>
|
||||||
|
#include <linux/module.h>
|
||||||
#include <linux/of_gpio.h>
|
#include <linux/of_gpio.h>
|
||||||
#include <linux/of_irq.h>
|
#include <linux/of_irq.h>
|
||||||
#include <linux/of_pci.h>
|
#include <linux/of_pci.h>
|
||||||
|
@ -385,6 +386,7 @@ static const struct of_device_id bcm6318_pcie_of_match[] = {
|
||||||
{ .compatible = "brcm,bcm6318-pcie", },
|
{ .compatible = "brcm,bcm6318-pcie", },
|
||||||
{ /* sentinel */ }
|
{ /* sentinel */ }
|
||||||
};
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, bcm6318_pcie_of_match);
|
||||||
|
|
||||||
static struct platform_driver bcm6318_pcie_driver = {
|
static struct platform_driver bcm6318_pcie_driver = {
|
||||||
.probe = bcm6318_pcie_probe,
|
.probe = bcm6318_pcie_probe,
|
||||||
|
@ -393,12 +395,9 @@ static struct platform_driver bcm6318_pcie_driver = {
|
||||||
.of_match_table = bcm6318_pcie_of_match,
|
.of_match_table = bcm6318_pcie_of_match,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
module_platform_driver(bcm6318_pcie_driver);
|
||||||
|
|
||||||
int __init bcm6318_pcie_init(void)
|
MODULE_AUTHOR("Álvaro Fernández Rojas <noltari@gmail.com>");
|
||||||
{
|
MODULE_DESCRIPTION("BCM6318 PCIe Controller Driver");
|
||||||
int ret = platform_driver_register(&bcm6318_pcie_driver);
|
MODULE_LICENSE("GPL v2");
|
||||||
if (ret)
|
MODULE_ALIAS("platform:bcm6318-pcie");
|
||||||
pr_err("pci-bcm6318: Error registering platform driver!\n");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
late_initcall_sync(bcm6318_pcie_init);
|
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/mfd/syscon.h>
|
#include <linux/mfd/syscon.h>
|
||||||
#include <linux/mm.h>
|
#include <linux/mm.h>
|
||||||
|
#include <linux/module.h>
|
||||||
#include <linux/of_gpio.h>
|
#include <linux/of_gpio.h>
|
||||||
#include <linux/of_irq.h>
|
#include <linux/of_irq.h>
|
||||||
#include <linux/of_pci.h>
|
#include <linux/of_pci.h>
|
||||||
|
@ -395,6 +396,7 @@ static const struct of_device_id bcm6328_pcie_of_match[] = {
|
||||||
{ .compatible = "brcm,bcm6328-pcie", },
|
{ .compatible = "brcm,bcm6328-pcie", },
|
||||||
{ /* sentinel */ }
|
{ /* sentinel */ }
|
||||||
};
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, bcm6328_pcie_of_match);
|
||||||
|
|
||||||
static struct platform_driver bcm6328_pcie_driver = {
|
static struct platform_driver bcm6328_pcie_driver = {
|
||||||
.probe = bcm6328_pcie_probe,
|
.probe = bcm6328_pcie_probe,
|
||||||
|
@ -403,12 +405,9 @@ static struct platform_driver bcm6328_pcie_driver = {
|
||||||
.of_match_table = bcm6328_pcie_of_match,
|
.of_match_table = bcm6328_pcie_of_match,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
module_platform_driver(bcm6328_pcie_driver);
|
||||||
|
|
||||||
int __init bcm6328_pcie_init(void)
|
MODULE_AUTHOR("Álvaro Fernández Rojas <noltari@gmail.com>");
|
||||||
{
|
MODULE_DESCRIPTION("BCM6328 PCIe Controller Driver");
|
||||||
int ret = platform_driver_register(&bcm6328_pcie_driver);
|
MODULE_LICENSE("GPL v2");
|
||||||
if (ret)
|
MODULE_ALIAS("platform:bcm6328-pcie");
|
||||||
pr_err("pci-bcm6328: Error registering platform driver!\n");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
late_initcall_sync(bcm6328_pcie_init);
|
|
||||||
|
|
Loading…
Reference in a new issue