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

Commit a8a93c6f authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Merge branch 'platform/remove_owner' of...

Merge branch 'platform/remove_owner' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux into driver-core-next

Remove all .owner fields from platform drivers
parents 0df1f248 79cd1762
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1057,7 +1057,6 @@ static struct platform_driver sa1111_device_driver = {
	.resume		= sa1111_resume,
	.driver		= {
		.name	= "sa1111",
		.owner	= THIS_MODULE,
	},
};

+0 −1
Original line number Diff line number Diff line
@@ -92,7 +92,6 @@ static int __init davinci_cpuidle_probe(struct platform_device *pdev)
static struct platform_driver davinci_cpuidle_driver = {
	.driver = {
		.name	= "cpuidle-davinci",
		.owner	= THIS_MODULE,
	},
};

+0 −1
Original line number Diff line number Diff line
@@ -148,7 +148,6 @@ static int __exit davinci_pm_remove(struct platform_device *pdev)
static struct platform_driver davinci_pm_driver = {
	.driver = {
		.name	 = "pm-davinci",
		.owner	 = THIS_MODULE,
	},
	.remove = __exit_p(davinci_pm_remove),
};
+0 −1
Original line number Diff line number Diff line
@@ -59,7 +59,6 @@ static struct of_device_id imx_mmdc_dt_ids[] = {
static struct platform_driver imx_mmdc_driver = {
	.driver		= {
		.name	= "imx-mmdc",
		.owner	= THIS_MODULE,
		.of_match_table = imx_mmdc_dt_ids,
	},
	.probe		= imx_mmdc_probe,
+0 −1
Original line number Diff line number Diff line
@@ -169,7 +169,6 @@ static struct platform_driver msm_clock_pcom_driver = {
	.probe		= msm_clock_pcom_probe,
	.driver		= {
		.name	= "msm-clock-pcom",
		.owner	= THIS_MODULE,
	},
};
module_platform_driver(msm_clock_pcom_driver);
Loading