Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -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),
	},
	},
};
};