diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-02-13 15:40:19 +0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-06-17 15:00:50 +0400 |
commit | 94140f0d225fd1261e11a9d883be6de5692d57d8 (patch) | |
tree | a1b9c2d2742fb8fca18b84680feda7dfcf5a84b8 /drivers/video/omap2/dss/dss.h | |
parent | a65c8bdab9f122270d149e1ef084a6d11181ecdd (diff) | |
download | linux-94140f0d225fd1261e11a9d883be6de5692d57d8.tar.xz |
OMAPDSS: implement display sysfs without dss bus
We aim to remove the custom omapdss bus totally, as it's quite a strange
construct and won't be compatible with common display framework. One
problem on the road is that we have sysfs files for each display, and
they depend on the omapdss bus.
This patch creates the display sysfs files independent of the omapdss
bus. This gives us backwards compatibility without using the omapdss bus
for the sysfs files.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/dss.h')
-rw-r--r-- | drivers/video/omap2/dss/dss.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/video/omap2/dss/dss.h b/drivers/video/omap2/dss/dss.h index 7964d3b9853b..03d729ac8c42 100644 --- a/drivers/video/omap2/dss/dss.h +++ b/drivers/video/omap2/dss/dss.h @@ -188,10 +188,8 @@ int dss_suspend_all_devices(void); int dss_resume_all_devices(void); void dss_disable_all_devices(void); -int display_init_sysfs(struct platform_device *pdev, - struct omap_dss_device *dssdev); -void display_uninit_sysfs(struct platform_device *pdev, - struct omap_dss_device *dssdev); +int display_init_sysfs(struct platform_device *pdev); +void display_uninit_sysfs(struct platform_device *pdev); /* manager */ int dss_init_overlay_managers(void); |