staging: mt7621-pinctrl: Remove redundant owner assignment

Remove the owner assignment form the platform driver as
platform_driver_register() already initializes the owner.
Found using coccinelle.

Signed-off-by: Christian Lütke-Stetzkamp <christian@lkamp.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Christian Lütke-Stetzkamp 2018-04-18 19:35:29 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель 70100e25ae
Коммит f9538d44b5
1 изменённых файлов: 0 добавлений и 1 удалений

Просмотреть файл

@ -459,7 +459,6 @@ static struct platform_driver rt2880_pinmux_driver = {
.probe = rt2880_pinmux_probe,
.driver = {
.name = "rt2880-pinmux",
.owner = THIS_MODULE,
.of_match_table = rt2880_pinmux_match,
},
};