Commit 70100e25 authored by Christian Lütke-Stetzkamp's avatar Christian Lütke-Stetzkamp Committed by Greg Kroah-Hartman

staging: mt7621-pci: 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: default avatarChristian Lütke-Stetzkamp <christian@lkamp.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f89ce734
...@@ -832,7 +832,6 @@ static struct platform_driver mt7621_pci_driver = { ...@@ -832,7 +832,6 @@ static struct platform_driver mt7621_pci_driver = {
.probe = mt7621_pci_probe, .probe = mt7621_pci_probe,
.driver = { .driver = {
.name = "mt7621-pci", .name = "mt7621-pci",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(mt7621_pci_ids), .of_match_table = of_match_ptr(mt7621_pci_ids),
}, },
}; };
......
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