aboutsummaryrefslogtreecommitdiffstats
path: root/include/video
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2012-11-05 04:11:50 -0500
committerTomi Valkeinen <tomi.valkeinen@ti.com>2012-11-05 04:11:50 -0500
commit9296dbd79efb3a754f06d71510cc47af7eff0bee (patch)
tree79e1f93bb4e95bf3075acf4a12f780b788ffb0ef /include/video
parentf8fb7d7b7bbaa9336aa44675f56fd2f329516200 (diff)
parentffc81fc5f3f6070820cb7ef885daa37545291e97 (diff)
Merge branch '3.8/misc-2'
Merge omapdss miscellaneous patches.
Diffstat (limited to 'include/video')
-rw-r--r--include/video/omapdss.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h
index f39e6aabce21..b1248c2d36e1 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 {
@@ -682,8 +681,6 @@ struct omap_dss_driver {
682 681
683 int (*enable)(struct omap_dss_device *display); 682 int (*enable)(struct omap_dss_device *display);
684 void (*disable)(struct omap_dss_device *display); 683 void (*disable)(struct omap_dss_device *display);
685 int (*suspend)(struct omap_dss_device *display);
686 int (*resume)(struct omap_dss_device *display);
687 int (*run_test)(struct omap_dss_device *display, int test); 684 int (*run_test)(struct omap_dss_device *display, int test);
688 685
689 int (*update)(struct omap_dss_device *dssdev, 686 int (*update)(struct omap_dss_device *dssdev,
@@ -741,6 +738,8 @@ struct omap_dss_driver {
741 738
742}; 739};
743 740
741enum omapdss_version omapdss_get_version(void);
742
744int omap_dss_register_driver(struct omap_dss_driver *); 743int omap_dss_register_driver(struct omap_dss_driver *);
745void omap_dss_unregister_driver(struct omap_dss_driver *); 744void omap_dss_unregister_driver(struct omap_dss_driver *);
746 745
@@ -750,6 +749,7 @@ void omap_dss_put_device(struct omap_dss_device *dssdev);
750struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from); 749struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from);
751struct omap_dss_device *omap_dss_find_device(void *data, 750struct omap_dss_device *omap_dss_find_device(void *data,
752 int (*match)(struct omap_dss_device *dssdev, void *data)); 751 int (*match)(struct omap_dss_device *dssdev, void *data));
752const char *omapdss_get_default_display_name(void);
753 753
754int omap_dss_start_device(struct omap_dss_device *dssdev); 754int omap_dss_start_device(struct omap_dss_device *dssdev);
755void omap_dss_stop_device(struct omap_dss_device *dssdev); 755void omap_dss_stop_device(struct omap_dss_device *dssdev);