aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorGeliang Tang <geliangtang@gmail.com>2016-11-23 09:55:07 -0500
committerBjorn Helgaas <helgaas@kernel.org>2016-12-07 15:32:30 -0500
commit554d9ec7b4c3f4bd439333135882a873bd734b4e (patch)
tree69a851475f41be4a1e680605b1422f5cbabc4431 /drivers/pci
parent1001354ca34179f3db924eb66672442a173147dc (diff)
PCI: spear: Use builtin_platform_driver() to simplify the code
Use builtin_platform_driver() helper to simplify the code. Signed-off-by: Geliang Tang <geliangtang@gmail.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/host/pcie-spear13xx.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/pci/host/pcie-spear13xx.c b/drivers/pci/host/pcie-spear13xx.c
index 3cf197ba7f37..dafe8b88d97d 100644
--- a/drivers/pci/host/pcie-spear13xx.c
+++ b/drivers/pci/host/pcie-spear13xx.c
@@ -296,8 +296,4 @@ static struct platform_driver spear13xx_pcie_driver = {
296 }, 296 },
297}; 297};
298 298
299static int __init spear13xx_pcie_init(void) 299builtin_platform_driver(spear13xx_pcie_driver);
300{
301 return platform_driver_register(&spear13xx_pcie_driver);
302}
303device_initcall(spear13xx_pcie_init);