diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2010-07-30 11:57:57 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-05-11 14:20:17 +0300 |
commit | d1f5857e4bc9b2620fb3e84b1dbaa0ac11b831b4 (patch) | |
tree | a7f48a1c82be0d87924f015d6b5b3f2773a77fc2 /include/video | |
parent | 22d6d676261a5e204a7078df21459747750c92fb (diff) | |
download | linux-3.10-d1f5857e4bc9b2620fb3e84b1dbaa0ac11b831b4.tar.gz linux-3.10-d1f5857e4bc9b2620fb3e84b1dbaa0ac11b831b4.tar.bz2 linux-3.10-d1f5857e4bc9b2620fb3e84b1dbaa0ac11b831b4.zip |
OMAP: DSS2: DSI: Add DSI pad muxing support
Add dsi_mux_pads function pointer to omap_dss_board_info, and use the
function pointer in DSI code to configure the DSI pads either to normal
DSI operation, or to pull down when in ULPS.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/omapdss.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index 44a864648c1..ab7d6564e29 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -233,6 +233,7 @@ struct omap_dss_board_info { int num_devices; struct omap_dss_device **devices; struct omap_dss_device *default_device; + void (*dsi_mux_pads)(bool enable); }; #if defined(CONFIG_OMAP2_DSS_MODULE) || defined(CONFIG_OMAP2_DSS) |