diff options
author | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2010-01-19 08:53:16 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2010-02-24 07:31:28 -0500 |
commit | 3651131268d7eae63efdffe6fa4a361abd44d747 (patch) | |
tree | 9ef7a38028cc1763c8ff895aeba8ae40ffb5c572 /arch/arm/plat-omap/include/plat/display.h | |
parent | 37ac60e414052f1d9301368437db8f0cb9e323fe (diff) |
OMAP: DSS2: move set/get_wss()
Move set/get_wss() 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 'arch/arm/plat-omap/include/plat/display.h')
-rw-r--r-- | arch/arm/plat-omap/include/plat/display.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/plat-omap/include/plat/display.h b/arch/arm/plat-omap/include/plat/display.h index 5221951350cd..3f7b20990086 100644 --- a/arch/arm/plat-omap/include/plat/display.h +++ b/arch/arm/plat-omap/include/plat/display.h | |||
@@ -469,9 +469,6 @@ struct omap_dss_device { | |||
469 | void (*get_timings)(struct omap_dss_device *dssdev, | 469 | void (*get_timings)(struct omap_dss_device *dssdev, |
470 | struct omap_video_timings *timings); | 470 | struct omap_video_timings *timings); |
471 | 471 | ||
472 | int (*set_wss)(struct omap_dss_device *dssdev, u32 wss); | ||
473 | u32 (*get_wss)(struct omap_dss_device *dssdev); | ||
474 | |||
475 | /* platform specific */ | 472 | /* platform specific */ |
476 | int (*platform_enable)(struct omap_dss_device *dssdev); | 473 | int (*platform_enable)(struct omap_dss_device *dssdev); |
477 | void (*platform_disable)(struct omap_dss_device *dssdev); | 474 | void (*platform_disable)(struct omap_dss_device *dssdev); |
@@ -516,6 +513,9 @@ struct omap_dss_driver { | |||
516 | void (*get_resolution)(struct omap_dss_device *dssdev, | 513 | void (*get_resolution)(struct omap_dss_device *dssdev, |
517 | u16 *xres, u16 *yres); | 514 | u16 *xres, u16 *yres); |
518 | int (*get_recommended_bpp)(struct omap_dss_device *dssdev); | 515 | int (*get_recommended_bpp)(struct omap_dss_device *dssdev); |
516 | |||
517 | int (*set_wss)(struct omap_dss_device *dssdev, u32 wss); | ||
518 | u32 (*get_wss)(struct omap_dss_device *dssdev); | ||
519 | }; | 519 | }; |
520 | 520 | ||
521 | int omap_dss_register_driver(struct omap_dss_driver *); | 521 | int omap_dss_register_driver(struct omap_dss_driver *); |