diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-03-24 13:58:01 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-05-11 14:20:44 +0300 |
commit | 33a410be6f4b760f0abe3ec05ac808f1c391bd41 (patch) | |
tree | e53fd02ae3f1deda1fb735abdded1eae3788eb81 /include/video/omap-panel-nokia-dsi.h | |
parent | 88257b26953f73f30acf49587cb42b84be43c587 (diff) |
OMAP: DSS2: Taal: Implement configurable ESD interval
ESD check in Taal driver is currently on/off feature with hardcoded
interval. This patch changes it to a configurable interval, which can be
set from the board file.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video/omap-panel-nokia-dsi.h')
-rw-r--r-- | include/video/omap-panel-nokia-dsi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/video/omap-panel-nokia-dsi.h b/include/video/omap-panel-nokia-dsi.h index e109b21e975a..3bd8d231add7 100644 --- a/include/video/omap-panel-nokia-dsi.h +++ b/include/video/omap-panel-nokia-dsi.h @@ -8,7 +8,7 @@ struct omap_dss_device; * @name: panel name * @use_ext_te: use external TE * @ext_te_gpio: external TE GPIO - * @use_esd_check: perform ESD checks + * @esd_interval: interval of ESD checks, 0 = disabled (ms) * @max_backlight_level: maximum backlight level * @set_backlight: pointer to backlight set function * @get_backlight: pointer to backlight get function @@ -21,7 +21,7 @@ struct nokia_dsi_panel_data { bool use_ext_te; int ext_te_gpio; - bool use_esd_check; + unsigned esd_interval; int max_backlight_level; int (*set_backlight)(struct omap_dss_device *dssdev, int level); |