Commit 87b50673 authored by Wolfram Sang's avatar Wolfram Sang

pinctrl: nomadik: 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 1d57fb12
...@@ -1285,7 +1285,6 @@ static int abx500_gpio_remove(struct platform_device *pdev) ...@@ -1285,7 +1285,6 @@ static int abx500_gpio_remove(struct platform_device *pdev)
static struct platform_driver abx500_gpio_driver = { static struct platform_driver abx500_gpio_driver = {
.driver = { .driver = {
.name = "abx500-gpio", .name = "abx500-gpio",
.owner = THIS_MODULE,
.of_match_table = abx500_gpio_match, .of_match_table = abx500_gpio_match,
}, },
.probe = abx500_gpio_probe, .probe = abx500_gpio_probe,
......
...@@ -2047,7 +2047,6 @@ static const struct of_device_id nmk_gpio_match[] = { ...@@ -2047,7 +2047,6 @@ static const struct of_device_id nmk_gpio_match[] = {
static struct platform_driver nmk_gpio_driver = { static struct platform_driver nmk_gpio_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "gpio", .name = "gpio",
.of_match_table = nmk_gpio_match, .of_match_table = nmk_gpio_match,
}, },
...@@ -2060,7 +2059,6 @@ static SIMPLE_DEV_PM_OPS(nmk_pinctrl_pm_ops, ...@@ -2060,7 +2059,6 @@ static SIMPLE_DEV_PM_OPS(nmk_pinctrl_pm_ops,
static struct platform_driver nmk_pinctrl_driver = { static struct platform_driver nmk_pinctrl_driver = {
.driver = { .driver = {
.owner = THIS_MODULE,
.name = "pinctrl-nomadik", .name = "pinctrl-nomadik",
.of_match_table = nmk_pinctrl_match, .of_match_table = nmk_pinctrl_match,
.pm = &nmk_pinctrl_pm_ops, .pm = &nmk_pinctrl_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