diff options
author | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2010-01-11 08:11:01 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2010-02-24 07:31:27 -0500 |
commit | 225b650d41e7cdbf5cd322a461b04493caabed09 (patch) | |
tree | dcd6b3f83036eeb13777f018aca4cf8273d087c5 /drivers/video/omap2/dss/rfbi.c | |
parent | a269950405ab17ce3a604ddcd939709a4a7a747c (diff) |
OMAP: DSS2: move enable/get_te()
Move enable/get_te() from omap_dss_device to omap_dss_driver.
This is part of a larger patch-set, which moves the control from omapdss
driver to the display driver.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Diffstat (limited to 'drivers/video/omap2/dss/rfbi.c')
-rw-r--r-- | drivers/video/omap2/dss/rfbi.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/video/omap2/dss/rfbi.c b/drivers/video/omap2/dss/rfbi.c index 6b9cd767c7c1..71293876fed1 100644 --- a/drivers/video/omap2/dss/rfbi.c +++ b/drivers/video/omap2/dss/rfbi.c | |||
@@ -1232,12 +1232,6 @@ static int rfbi_display_sync(struct omap_dss_device *dssdev) | |||
1232 | return 0; | 1232 | return 0; |
1233 | } | 1233 | } |
1234 | 1234 | ||
1235 | static int rfbi_display_enable_te(struct omap_dss_device *dssdev, bool enable) | ||
1236 | { | ||
1237 | dssdev->driver->enable_te(dssdev, enable); | ||
1238 | return 0; | ||
1239 | } | ||
1240 | |||
1241 | static int rfbi_display_enable(struct omap_dss_device *dssdev) | 1235 | static int rfbi_display_enable(struct omap_dss_device *dssdev) |
1242 | { | 1236 | { |
1243 | int r; | 1237 | int r; |
@@ -1299,7 +1293,6 @@ int rfbi_init_display(struct omap_dss_device *dssdev) | |||
1299 | dssdev->disable = rfbi_display_disable; | 1293 | dssdev->disable = rfbi_display_disable; |
1300 | dssdev->update = rfbi_display_update; | 1294 | dssdev->update = rfbi_display_update; |
1301 | dssdev->sync = rfbi_display_sync; | 1295 | dssdev->sync = rfbi_display_sync; |
1302 | dssdev->enable_te = rfbi_display_enable_te; | ||
1303 | 1296 | ||
1304 | rfbi.dssdev[dssdev->phy.rfbi.channel] = dssdev; | 1297 | rfbi.dssdev[dssdev->phy.rfbi.channel] = dssdev; |
1305 | 1298 | ||