aboutsummaryrefslogtreecommitdiffstats
path: root/include/video/omapdss.h
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2012-05-30 06:26:00 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2012-10-24 01:46:23 -0400
commit998c336d4c7183301ed6a6ca93952f63e3cf694f (patch)
tree73176660d6f552e0d94020e1adb3b74084b8ba76 /include/video/omapdss.h
parentb111224900ed743cc5a5f4feafdc910b9e8e736c (diff)
OMAPDSS: remove omap_dss_device's suspend/resume
The panel drivers contain enable, disable, suspend and resume calls. The suspend and resume are effectively identical to disable and enable. This patch removes panel suspend and enable code from omapdss and the panel drivers, and replaces their use with enable and disable. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video/omapdss.h')
-rw-r--r--include/video/omapdss.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h
index 88c829466fc..cdfb22e7fe8 100644
--- a/include/video/omapdss.h
+++ b/include/video/omapdss.h
@@ -158,7 +158,6 @@ enum omap_display_caps {
158enum omap_dss_display_state { 158enum omap_dss_display_state {
159 OMAP_DSS_DISPLAY_DISABLED = 0, 159 OMAP_DSS_DISPLAY_DISABLED = 0,
160 OMAP_DSS_DISPLAY_ACTIVE, 160 OMAP_DSS_DISPLAY_ACTIVE,
161 OMAP_DSS_DISPLAY_SUSPENDED,
162}; 161};
163 162
164enum omap_dss_audio_state { 163enum omap_dss_audio_state {
@@ -686,8 +685,6 @@ struct omap_dss_driver {
686 685
687 int (*enable)(struct omap_dss_device *display); 686 int (*enable)(struct omap_dss_device *display);
688 void (*disable)(struct omap_dss_device *display); 687 void (*disable)(struct omap_dss_device *display);
689 int (*suspend)(struct omap_dss_device *display);
690 int (*resume)(struct omap_dss_device *display);
691 int (*run_test)(struct omap_dss_device *display, int test); 688 int (*run_test)(struct omap_dss_device *display, int test);
692 689
693 int (*update)(struct omap_dss_device *dssdev, 690 int (*update)(struct omap_dss_device *dssdev,