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

Commit 1d978691 authored by Wolfram Sang's avatar Wolfram Sang Committed by Greg Kroah-Hartman
Browse files

usb: host: drop owner assignment from platform_drivers



These platform_drivers do not need to set an owner, it will be populated by the
driver core.

Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f1161256
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -709,7 +709,6 @@ static struct platform_driver ehci_fsl_driver = {
	.shutdown = usb_hcd_platform_shutdown,
	.driver = {
		.name = "fsl-ehci",
		.owner	= THIS_MODULE,
		.pm = EHCI_FSL_PM_OPS,
	},
};
+0 −1
Original line number Diff line number Diff line
@@ -187,7 +187,6 @@ static struct platform_driver ehci_grlib_driver = {
	.shutdown	= usb_hcd_platform_shutdown,
	.driver = {
		.name = "grlib-ehci",
		.owner = THIS_MODULE,
		.of_match_table = ehci_hcd_grlib_of_match,
	},
};
+0 −1
Original line number Diff line number Diff line
@@ -325,6 +325,5 @@ static struct platform_driver ehci_hcd_msp_driver = {
	.remove		= ehci_hcd_msp_drv_remove,
	.driver		= {
		.name	= "pmcmsp-ehci",
		.owner	= THIS_MODULE,
	},
};
+0 −1
Original line number Diff line number Diff line
@@ -234,7 +234,6 @@ static struct platform_driver ehci_hcd_ppc_of_driver = {
	.shutdown	= usb_hcd_platform_shutdown,
	.driver = {
		.name = "ppc-of-ehci",
		.owner = THIS_MODULE,
		.of_match_table = ehci_hcd_ppc_of_match,
	},
};
+0 −1
Original line number Diff line number Diff line
@@ -178,7 +178,6 @@ static struct platform_driver ehci_hcd_sead3_driver = {
	.shutdown	= usb_hcd_platform_shutdown,
	.driver = {
		.name	= "sead3-ehci",
		.owner	= THIS_MODULE,
		.pm	= SEAD3_EHCI_PMOPS,
	}
};
Loading