Commit 5ffc6d13 authored by Wolfram Sang's avatar Wolfram Sang

mips: lantiq: xway: 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 5e641f9f
...@@ -46,7 +46,6 @@ static struct platform_driver dcdc_driver = { ...@@ -46,7 +46,6 @@ static struct platform_driver dcdc_driver = {
.probe = dcdc_probe, .probe = dcdc_probe,
.driver = { .driver = {
.name = "dcdc-xrx200", .name = "dcdc-xrx200",
.owner = THIS_MODULE,
.of_match_table = dcdc_match, .of_match_table = dcdc_match,
}, },
}; };
......
...@@ -261,7 +261,6 @@ static struct platform_driver dma_driver = { ...@@ -261,7 +261,6 @@ static struct platform_driver dma_driver = {
.probe = ltq_dma_init, .probe = ltq_dma_init,
.driver = { .driver = {
.name = "dma-xway", .name = "dma-xway",
.owner = THIS_MODULE,
.of_match_table = dma_match, .of_match_table = dma_match,
}, },
}; };
......
...@@ -193,7 +193,6 @@ static struct platform_driver dma_driver = { ...@@ -193,7 +193,6 @@ static struct platform_driver dma_driver = {
.probe = gptu_probe, .probe = gptu_probe,
.driver = { .driver = {
.name = "gptu-xway", .name = "gptu-xway",
.owner = THIS_MODULE,
.of_match_table = gptu_match, .of_match_table = gptu_match,
}, },
}; };
......
...@@ -85,7 +85,6 @@ static struct platform_driver xway_phy_driver = { ...@@ -85,7 +85,6 @@ static struct platform_driver xway_phy_driver = {
.probe = xway_phy_fw_probe, .probe = xway_phy_fw_probe,
.driver = { .driver = {
.name = "phy-xrx200", .name = "phy-xrx200",
.owner = THIS_MODULE,
.of_match_table = xway_phy_match, .of_match_table = xway_phy_match,
}, },
}; };
......
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