Commit ec484881 authored by Wolfram Sang's avatar Wolfram Sang

mips: pci: drop owner assignment from platform_drivers

A platform_driver does not need to set an owner, it will be populated by the
driver core.
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent b9acbf99
...@@ -505,7 +505,6 @@ static struct platform_driver alchemy_pcictl_driver = { ...@@ -505,7 +505,6 @@ static struct platform_driver alchemy_pcictl_driver = {
.probe = alchemy_pci_probe, .probe = alchemy_pci_probe,
.driver = { .driver = {
.name = "alchemy-pci", .name = "alchemy-pci",
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -416,7 +416,6 @@ static struct platform_driver ar71xx_pci_driver = { ...@@ -416,7 +416,6 @@ static struct platform_driver ar71xx_pci_driver = {
.probe = ar71xx_pci_probe, .probe = ar71xx_pci_probe,
.driver = { .driver = {
.name = "ar71xx-pci", .name = "ar71xx-pci",
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -423,7 +423,6 @@ static struct platform_driver ar724x_pci_driver = { ...@@ -423,7 +423,6 @@ static struct platform_driver ar724x_pci_driver = {
.probe = ar724x_pci_probe, .probe = ar724x_pci_probe,
.driver = { .driver = {
.name = "ar724x-pci", .name = "ar724x-pci",
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -247,7 +247,6 @@ static struct platform_driver ltq_pci_driver = { ...@@ -247,7 +247,6 @@ static struct platform_driver ltq_pci_driver = {
.probe = ltq_pci_probe, .probe = ltq_pci_probe,
.driver = { .driver = {
.name = "pci-xway", .name = "pci-xway",
.owner = THIS_MODULE,
.of_match_table = ltq_pci_match, .of_match_table = ltq_pci_match,
}, },
}; };
......
...@@ -598,7 +598,6 @@ static struct platform_driver rt3883_pci_driver = { ...@@ -598,7 +598,6 @@ static struct platform_driver rt3883_pci_driver = {
.probe = rt3883_pci_probe, .probe = rt3883_pci_probe,
.driver = { .driver = {
.name = "rt3883-pci", .name = "rt3883-pci",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(rt3883_pci_ids), .of_match_table = of_match_ptr(rt3883_pci_ids),
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment