Commit 1cd5ad7e authored by Wolfram Sang's avatar Wolfram Sang

s390: block: 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 0929ae37
...@@ -1003,7 +1003,6 @@ static const struct dev_pm_ops dcssblk_pm_ops = { ...@@ -1003,7 +1003,6 @@ static const struct dev_pm_ops dcssblk_pm_ops = {
static struct platform_driver dcssblk_pdrv = { static struct platform_driver dcssblk_pdrv = {
.driver = { .driver = {
.name = "dcssblk", .name = "dcssblk",
.owner = THIS_MODULE,
.pm = &dcssblk_pm_ops, .pm = &dcssblk_pm_ops,
}, },
}; };
......
...@@ -417,7 +417,6 @@ static const struct dev_pm_ops xpram_pm_ops = { ...@@ -417,7 +417,6 @@ static const struct dev_pm_ops xpram_pm_ops = {
static struct platform_driver xpram_pdrv = { static struct platform_driver xpram_pdrv = {
.driver = { .driver = {
.name = XPRAM_NAME, .name = XPRAM_NAME,
.owner = THIS_MODULE,
.pm = &xpram_pm_ops, .pm = &xpram_pm_ops,
}, },
}; };
......
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