diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-11-04 04:22:46 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-12-02 01:54:31 -0500 |
commit | 7797c6da64852b06b585b7eca8d3f657bfc9fa47 (patch) | |
tree | 560338e72d4a498e9a0164dbf0da8b54ff4ae3a1 /drivers/video/omap2/dss/dpi.c | |
parent | 58f2554807a7dc627f1583d1d4363b85758cf685 (diff) |
OMAPDSS: hide manager's enable/disable()
omap_overlay_manager struct contains enable() and disable() functions.
However, these are only meant to be used from inside omapdss, and thus
it's bad to expose the functions.
This patch adds dss_mgr_enable() and dss_mgr_disable() functions to
apply.c, which handle enabling and disabling the output.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/dpi.c')
-rw-r--r-- | drivers/video/omap2/dss/dpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/omap2/dss/dpi.c b/drivers/video/omap2/dss/dpi.c index 976ac23dcd0c..79c4df3c9a88 100644 --- a/drivers/video/omap2/dss/dpi.c +++ b/drivers/video/omap2/dss/dpi.c | |||
@@ -223,7 +223,7 @@ int omapdss_dpi_display_enable(struct omap_dss_device *dssdev) | |||
223 | 223 | ||
224 | mdelay(2); | 224 | mdelay(2); |
225 | 225 | ||
226 | dssdev->manager->enable(dssdev->manager); | 226 | dss_mgr_enable(dssdev->manager); |
227 | 227 | ||
228 | return 0; | 228 | return 0; |
229 | 229 | ||
@@ -249,7 +249,7 @@ EXPORT_SYMBOL(omapdss_dpi_display_enable); | |||
249 | 249 | ||
250 | void omapdss_dpi_display_disable(struct omap_dss_device *dssdev) | 250 | void omapdss_dpi_display_disable(struct omap_dss_device *dssdev) |
251 | { | 251 | { |
252 | dssdev->manager->disable(dssdev->manager); | 252 | dss_mgr_disable(dssdev->manager); |
253 | 253 | ||
254 | if (dpi_use_dsi_pll(dssdev)) { | 254 | if (dpi_use_dsi_pll(dssdev)) { |
255 | dss_select_dispc_clk_source(OMAP_DSS_CLK_SRC_FCK); | 255 | dss_select_dispc_clk_source(OMAP_DSS_CLK_SRC_FCK); |