diff options
Diffstat (limited to 'drivers/pci/host')
-rw-r--r-- | drivers/pci/host/pci-dra7xx.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pci-exynos.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pci-host-generic.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pci-imx6.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pci-keystone.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pci-mvebu.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pci-rcar-gen2.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pci-tegra.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pci-xgene.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pcie-rcar.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pcie-spear13xx.c | 1 | ||||
-rw-r--r-- | drivers/pci/host/pcie-xilinx.c | 1 |
12 files changed, 0 insertions, 12 deletions
diff --git a/drivers/pci/host/pci-dra7xx.c b/drivers/pci/host/pci-dra7xx.c index 8c6969747acd..2d57e19a2cd4 100644 --- a/drivers/pci/host/pci-dra7xx.c +++ b/drivers/pci/host/pci-dra7xx.c | |||
@@ -446,7 +446,6 @@ static struct platform_driver dra7xx_pcie_driver = { | |||
446 | .remove = __exit_p(dra7xx_pcie_remove), | 446 | .remove = __exit_p(dra7xx_pcie_remove), |
447 | .driver = { | 447 | .driver = { |
448 | .name = "dra7-pcie", | 448 | .name = "dra7-pcie", |
449 | .owner = THIS_MODULE, | ||
450 | .of_match_table = of_dra7xx_pcie_match, | 449 | .of_match_table = of_dra7xx_pcie_match, |
451 | }, | 450 | }, |
452 | }; | 451 | }; |
diff --git a/drivers/pci/host/pci-exynos.c b/drivers/pci/host/pci-exynos.c index 850c9f951a3f..d202b37c3698 100644 --- a/drivers/pci/host/pci-exynos.c +++ b/drivers/pci/host/pci-exynos.c | |||
@@ -641,7 +641,6 @@ static struct platform_driver exynos_pcie_driver = { | |||
641 | .remove = __exit_p(exynos_pcie_remove), | 641 | .remove = __exit_p(exynos_pcie_remove), |
642 | .driver = { | 642 | .driver = { |
643 | .name = "exynos-pcie", | 643 | .name = "exynos-pcie", |
644 | .owner = THIS_MODULE, | ||
645 | .of_match_table = exynos_pcie_of_match, | 644 | .of_match_table = exynos_pcie_of_match, |
646 | }, | 645 | }, |
647 | }; | 646 | }; |
diff --git a/drivers/pci/host/pci-host-generic.c b/drivers/pci/host/pci-host-generic.c index 18959075d164..6eb1aa75bd37 100644 --- a/drivers/pci/host/pci-host-generic.c +++ b/drivers/pci/host/pci-host-generic.c | |||
@@ -310,7 +310,6 @@ static int gen_pci_probe(struct platform_device *pdev) | |||
310 | static struct platform_driver gen_pci_driver = { | 310 | static struct platform_driver gen_pci_driver = { |
311 | .driver = { | 311 | .driver = { |
312 | .name = "pci-host-generic", | 312 | .name = "pci-host-generic", |
313 | .owner = THIS_MODULE, | ||
314 | .of_match_table = gen_pci_of_match, | 313 | .of_match_table = gen_pci_of_match, |
315 | }, | 314 | }, |
316 | .probe = gen_pci_probe, | 315 | .probe = gen_pci_probe, |
diff --git a/drivers/pci/host/pci-imx6.c b/drivers/pci/host/pci-imx6.c index d1a26d17b586..fdb95367721e 100644 --- a/drivers/pci/host/pci-imx6.c +++ b/drivers/pci/host/pci-imx6.c | |||
@@ -643,7 +643,6 @@ MODULE_DEVICE_TABLE(of, imx6_pcie_of_match); | |||
643 | static struct platform_driver imx6_pcie_driver = { | 643 | static struct platform_driver imx6_pcie_driver = { |
644 | .driver = { | 644 | .driver = { |
645 | .name = "imx6q-pcie", | 645 | .name = "imx6q-pcie", |
646 | .owner = THIS_MODULE, | ||
647 | .of_match_table = imx6_pcie_of_match, | 646 | .of_match_table = imx6_pcie_of_match, |
648 | }, | 647 | }, |
649 | .shutdown = imx6_pcie_shutdown, | 648 | .shutdown = imx6_pcie_shutdown, |
diff --git a/drivers/pci/host/pci-keystone.c b/drivers/pci/host/pci-keystone.c index 62b9454c86fb..78f79e31ac5c 100644 --- a/drivers/pci/host/pci-keystone.c +++ b/drivers/pci/host/pci-keystone.c | |||
@@ -402,7 +402,6 @@ static struct platform_driver ks_pcie_driver __refdata = { | |||
402 | .remove = __exit_p(ks_pcie_remove), | 402 | .remove = __exit_p(ks_pcie_remove), |
403 | .driver = { | 403 | .driver = { |
404 | .name = "keystone-pcie", | 404 | .name = "keystone-pcie", |
405 | .owner = THIS_MODULE, | ||
406 | .of_match_table = of_match_ptr(ks_pcie_of_match), | 405 | .of_match_table = of_match_ptr(ks_pcie_of_match), |
407 | }, | 406 | }, |
408 | }; | 407 | }; |
diff --git a/drivers/pci/host/pci-mvebu.c b/drivers/pci/host/pci-mvebu.c index fed3fab132f2..1dd759596b0a 100644 --- a/drivers/pci/host/pci-mvebu.c +++ b/drivers/pci/host/pci-mvebu.c | |||
@@ -1081,7 +1081,6 @@ MODULE_DEVICE_TABLE(of, mvebu_pcie_of_match_table); | |||
1081 | 1081 | ||
1082 | static struct platform_driver mvebu_pcie_driver = { | 1082 | static struct platform_driver mvebu_pcie_driver = { |
1083 | .driver = { | 1083 | .driver = { |
1084 | .owner = THIS_MODULE, | ||
1085 | .name = "mvebu-pcie", | 1084 | .name = "mvebu-pcie", |
1086 | .of_match_table = mvebu_pcie_of_match_table, | 1085 | .of_match_table = mvebu_pcie_of_match_table, |
1087 | /* driver unloading/unbinding currently not supported */ | 1086 | /* driver unloading/unbinding currently not supported */ |
diff --git a/drivers/pci/host/pci-rcar-gen2.c b/drivers/pci/host/pci-rcar-gen2.c index 3ef854f5a5b5..d9c042febb1a 100644 --- a/drivers/pci/host/pci-rcar-gen2.c +++ b/drivers/pci/host/pci-rcar-gen2.c | |||
@@ -412,7 +412,6 @@ MODULE_DEVICE_TABLE(of, rcar_pci_of_match); | |||
412 | static struct platform_driver rcar_pci_driver = { | 412 | static struct platform_driver rcar_pci_driver = { |
413 | .driver = { | 413 | .driver = { |
414 | .name = "pci-rcar-gen2", | 414 | .name = "pci-rcar-gen2", |
415 | .owner = THIS_MODULE, | ||
416 | .suppress_bind_attrs = true, | 415 | .suppress_bind_attrs = true, |
417 | .of_match_table = rcar_pci_of_match, | 416 | .of_match_table = rcar_pci_of_match, |
418 | }, | 417 | }, |
diff --git a/drivers/pci/host/pci-tegra.c b/drivers/pci/host/pci-tegra.c index feccfa6b6c11..a800ae916394 100644 --- a/drivers/pci/host/pci-tegra.c +++ b/drivers/pci/host/pci-tegra.c | |||
@@ -2129,7 +2129,6 @@ put_resources: | |||
2129 | static struct platform_driver tegra_pcie_driver = { | 2129 | static struct platform_driver tegra_pcie_driver = { |
2130 | .driver = { | 2130 | .driver = { |
2131 | .name = "tegra-pcie", | 2131 | .name = "tegra-pcie", |
2132 | .owner = THIS_MODULE, | ||
2133 | .of_match_table = tegra_pcie_of_match, | 2132 | .of_match_table = tegra_pcie_of_match, |
2134 | .suppress_bind_attrs = true, | 2133 | .suppress_bind_attrs = true, |
2135 | }, | 2134 | }, |
diff --git a/drivers/pci/host/pci-xgene.c b/drivers/pci/host/pci-xgene.c index 2988fe136c1e..b1d0596457c5 100644 --- a/drivers/pci/host/pci-xgene.c +++ b/drivers/pci/host/pci-xgene.c | |||
@@ -652,7 +652,6 @@ static const struct of_device_id xgene_pcie_match_table[] = { | |||
652 | static struct platform_driver xgene_pcie_driver = { | 652 | static struct platform_driver xgene_pcie_driver = { |
653 | .driver = { | 653 | .driver = { |
654 | .name = "xgene-pcie", | 654 | .name = "xgene-pcie", |
655 | .owner = THIS_MODULE, | ||
656 | .of_match_table = of_match_ptr(xgene_pcie_match_table), | 655 | .of_match_table = of_match_ptr(xgene_pcie_match_table), |
657 | }, | 656 | }, |
658 | .probe = xgene_pcie_probe_bridge, | 657 | .probe = xgene_pcie_probe_bridge, |
diff --git a/drivers/pci/host/pcie-rcar.c b/drivers/pci/host/pcie-rcar.c index 5519e939e412..748786c402fc 100644 --- a/drivers/pci/host/pcie-rcar.c +++ b/drivers/pci/host/pcie-rcar.c | |||
@@ -981,7 +981,6 @@ static int rcar_pcie_probe(struct platform_device *pdev) | |||
981 | static struct platform_driver rcar_pcie_driver = { | 981 | static struct platform_driver rcar_pcie_driver = { |
982 | .driver = { | 982 | .driver = { |
983 | .name = DRV_NAME, | 983 | .name = DRV_NAME, |
984 | .owner = THIS_MODULE, | ||
985 | .of_match_table = rcar_pcie_of_match, | 984 | .of_match_table = rcar_pcie_of_match, |
986 | .suppress_bind_attrs = true, | 985 | .suppress_bind_attrs = true, |
987 | }, | 986 | }, |
diff --git a/drivers/pci/host/pcie-spear13xx.c b/drivers/pci/host/pcie-spear13xx.c index 2ca10cc887ee..866465fd3dbf 100644 --- a/drivers/pci/host/pcie-spear13xx.c +++ b/drivers/pci/host/pcie-spear13xx.c | |||
@@ -374,7 +374,6 @@ static struct platform_driver spear13xx_pcie_driver __initdata = { | |||
374 | .probe = spear13xx_pcie_probe, | 374 | .probe = spear13xx_pcie_probe, |
375 | .driver = { | 375 | .driver = { |
376 | .name = "spear-pcie", | 376 | .name = "spear-pcie", |
377 | .owner = THIS_MODULE, | ||
378 | .of_match_table = of_match_ptr(spear13xx_pcie_of_match), | 377 | .of_match_table = of_match_ptr(spear13xx_pcie_of_match), |
379 | }, | 378 | }, |
380 | }; | 379 | }; |
diff --git a/drivers/pci/host/pcie-xilinx.c b/drivers/pci/host/pcie-xilinx.c index 2f50fa5953fd..ef3ebaf9a738 100644 --- a/drivers/pci/host/pcie-xilinx.c +++ b/drivers/pci/host/pcie-xilinx.c | |||
@@ -947,7 +947,6 @@ static struct of_device_id xilinx_pcie_of_match[] = { | |||
947 | static struct platform_driver xilinx_pcie_driver = { | 947 | static struct platform_driver xilinx_pcie_driver = { |
948 | .driver = { | 948 | .driver = { |
949 | .name = "xilinx-pcie", | 949 | .name = "xilinx-pcie", |
950 | .owner = THIS_MODULE, | ||
951 | .of_match_table = xilinx_pcie_of_match, | 950 | .of_match_table = xilinx_pcie_of_match, |
952 | .suppress_bind_attrs = true, | 951 | .suppress_bind_attrs = true, |
953 | }, | 952 | }, |