Commit a17b87a5 authored by Wolfram Sang's avatar Wolfram Sang

ASoC: davinci: 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 c756e83d
...@@ -445,7 +445,6 @@ static struct platform_driver davinci_evm_driver = { ...@@ -445,7 +445,6 @@ static struct platform_driver davinci_evm_driver = {
.remove = davinci_evm_remove, .remove = davinci_evm_remove,
.driver = { .driver = {
.name = "davinci_evm", .name = "davinci_evm",
.owner = THIS_MODULE,
.pm = &snd_soc_pm_ops, .pm = &snd_soc_pm_ops,
.of_match_table = of_match_ptr(davinci_evm_dt_ids), .of_match_table = of_match_ptr(davinci_evm_dt_ids),
}, },
......
...@@ -770,7 +770,6 @@ static struct platform_driver davinci_mcbsp_driver = { ...@@ -770,7 +770,6 @@ static struct platform_driver davinci_mcbsp_driver = {
.remove = davinci_i2s_remove, .remove = davinci_i2s_remove,
.driver = { .driver = {
.name = "davinci-mcbsp", .name = "davinci-mcbsp",
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -1391,7 +1391,6 @@ static struct platform_driver davinci_mcasp_driver = { ...@@ -1391,7 +1391,6 @@ static struct platform_driver davinci_mcasp_driver = {
.remove = davinci_mcasp_remove, .remove = davinci_mcasp_remove,
.driver = { .driver = {
.name = "davinci-mcasp", .name = "davinci-mcasp",
.owner = THIS_MODULE,
.of_match_table = mcasp_dt_ids, .of_match_table = mcasp_dt_ids,
}, },
}; };
......
...@@ -267,7 +267,6 @@ static struct platform_driver davinci_vcif_driver = { ...@@ -267,7 +267,6 @@ static struct platform_driver davinci_vcif_driver = {
.remove = davinci_vcif_remove, .remove = davinci_vcif_remove,
.driver = { .driver = {
.name = "davinci-vcif", .name = "davinci-vcif",
.owner = THIS_MODULE,
}, },
}; };
......
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