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

Commit 75392bfe authored by Jani Nikula's avatar Jani Nikula Committed by Tomi Valkeinen
Browse files

OMAP: DSS2: Taal: Remove platform enable/disable



After the addition of proper hardware reset, taal_hw_reset(), there's no
need for an additional platform enable/disable. Remove them.

Signed-off-by: default avatarJani Nikula <ext-jani.1.nikula@nokia.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@nokia.com>
parent 6b316715
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -670,12 +670,6 @@ static int taal_power_on(struct omap_dss_device *dssdev)
	u8 id1, id2, id3;
	int r;

	if (dssdev->platform_enable) {
		r = dssdev->platform_enable(dssdev);
		if (r)
			return r;
	}

	/* it seems we have to wait a bit until taal is ready */
	msleep(5);

@@ -746,8 +740,6 @@ static int taal_power_on(struct omap_dss_device *dssdev)
	omapdss_dsi_display_disable(dssdev);
err0:
	dsi_bus_unlock();
	if (dssdev->platform_disable)
		dssdev->platform_disable(dssdev);

	return r;
}
@@ -776,9 +768,6 @@ static void taal_power_off(struct omap_dss_device *dssdev)

	omapdss_dsi_display_disable(dssdev);

	if (dssdev->platform_disable)
		dssdev->platform_disable(dssdev);

	td->enabled = 0;

	dsi_bus_unlock();