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

Commit f1782b47 authored by Wolfram Sang's avatar Wolfram Sang
Browse files

video: fbdev: omap2: dss: drop owner assignment from platform_drivers



A platform_driver does not need to set an owner, it will be populated by the
driver core.

Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent fb04e18e
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -244,7 +244,6 @@ static struct platform_driver omap_dss_driver = {
	.shutdown	= omap_dss_shutdown,
	.shutdown	= omap_dss_shutdown,
	.driver         = {
	.driver         = {
		.name   = "omapdss",
		.name   = "omapdss",
		.owner  = THIS_MODULE,
	},
	},
};
};


+0 −1
Original line number Original line Diff line number Diff line
@@ -3840,7 +3840,6 @@ static struct platform_driver omap_dispchw_driver = {
	.remove         = __exit_p(omap_dispchw_remove),
	.remove         = __exit_p(omap_dispchw_remove),
	.driver         = {
	.driver         = {
		.name   = "omapdss_dispc",
		.name   = "omapdss_dispc",
		.owner  = THIS_MODULE,
		.pm	= &dispc_pm_ops,
		.pm	= &dispc_pm_ops,
		.of_match_table = dispc_of_match,
		.of_match_table = dispc_of_match,
	},
	},
+0 −1
Original line number Original line Diff line number Diff line
@@ -719,7 +719,6 @@ static struct platform_driver omap_dpi_driver = {
	.remove         = __exit_p(omap_dpi_remove),
	.remove         = __exit_p(omap_dpi_remove),
	.driver         = {
	.driver         = {
		.name   = "omapdss_dpi",
		.name   = "omapdss_dpi",
		.owner  = THIS_MODULE,
	},
	},
};
};


+0 −1
Original line number Original line Diff line number Diff line
@@ -5751,7 +5751,6 @@ static struct platform_driver omap_dsihw_driver = {
	.remove         = __exit_p(omap_dsihw_remove),
	.remove         = __exit_p(omap_dsihw_remove),
	.driver         = {
	.driver         = {
		.name   = "omapdss_dsi",
		.name   = "omapdss_dsi",
		.owner  = THIS_MODULE,
		.pm	= &dsi_pm_ops,
		.pm	= &dsi_pm_ops,
		.of_match_table = dsi_of_match,
		.of_match_table = dsi_of_match,
	},
	},
+0 −1
Original line number Original line Diff line number Diff line
@@ -963,7 +963,6 @@ static struct platform_driver omap_dsshw_driver = {
	.remove         = __exit_p(omap_dsshw_remove),
	.remove         = __exit_p(omap_dsshw_remove),
	.driver         = {
	.driver         = {
		.name   = "omapdss_dss",
		.name   = "omapdss_dss",
		.owner  = THIS_MODULE,
		.pm	= &dss_pm_ops,
		.pm	= &dss_pm_ops,
		.of_match_table = dss_of_match,
		.of_match_table = dss_of_match,
	},
	},
Loading