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

Commit f64eafa0 authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

drm/omap: rename omapdrm device back



Now that creating the omapdrm device from the platform code has been
removed, we can rename the omapdrm device back to "omapdrm".

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 739a6d5d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ static int __init omap_dss_init(void)
			goto err_reg;
	}

	omap_drm_device = platform_device_register_simple("omapdrm_", 0, NULL, 0);
	omap_drm_device = platform_device_register_simple("omapdrm", 0, NULL, 0);
	if (IS_ERR(omap_drm_device)) {
		r = PTR_ERR(omap_drm_device);
		goto err_reg;
+1 −1
Original line number Diff line number Diff line
@@ -768,7 +768,7 @@ static SIMPLE_DEV_PM_OPS(omapdrm_pm_ops, omap_drm_suspend, omap_drm_resume);

static struct platform_driver pdev = {
	.driver = {
		.name = "omapdrm_",
		.name = "omapdrm",
		.pm = &omapdrm_pm_ops,
	},
	.probe = pdev_probe,