diff options
| author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-05-11 07:10:07 -0400 |
|---|---|---|
| committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-05-11 07:10:07 -0400 |
| commit | 4e9f99d75cc6979b92d03ff9ae129c652c00a8d3 (patch) | |
| tree | 72aee5e34c68c136c9efbefea2ecbc016d6819ba /include/video | |
| parent | f8ae2f08d2c4574ca5c3923d2463ef106b116c2a (diff) | |
OMAP: DSS2: Move nokia-dsi-panel.h to include/video/
arch/arm/plat-omap/include/plat/nokia-dsi-panel.h is an include for the
OMAP DSS panel driver for Nokia's DSI displays. A more logical place for
it is in include/video.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video')
| -rw-r--r-- | include/video/omap-panel-nokia-dsi.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/video/omap-panel-nokia-dsi.h b/include/video/omap-panel-nokia-dsi.h new file mode 100644 index 000000000000..e109b21e975a --- /dev/null +++ b/include/video/omap-panel-nokia-dsi.h | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | #ifndef __OMAP_NOKIA_DSI_PANEL_H | ||
| 2 | #define __OMAP_NOKIA_DSI_PANEL_H | ||
| 3 | |||
| 4 | struct omap_dss_device; | ||
| 5 | |||
| 6 | /** | ||
| 7 | * struct nokia_dsi_panel_data - Nokia DSI panel driver configuration | ||
| 8 | * @name: panel name | ||
| 9 | * @use_ext_te: use external TE | ||
| 10 | * @ext_te_gpio: external TE GPIO | ||
| 11 | * @use_esd_check: perform ESD checks | ||
| 12 | * @max_backlight_level: maximum backlight level | ||
| 13 | * @set_backlight: pointer to backlight set function | ||
| 14 | * @get_backlight: pointer to backlight get function | ||
| 15 | */ | ||
| 16 | struct nokia_dsi_panel_data { | ||
| 17 | const char *name; | ||
| 18 | |||
| 19 | int reset_gpio; | ||
| 20 | |||
| 21 | bool use_ext_te; | ||
| 22 | int ext_te_gpio; | ||
| 23 | |||
| 24 | bool use_esd_check; | ||
| 25 | |||
| 26 | int max_backlight_level; | ||
| 27 | int (*set_backlight)(struct omap_dss_device *dssdev, int level); | ||
| 28 | int (*get_backlight)(struct omap_dss_device *dssdev); | ||
| 29 | }; | ||
| 30 | |||
| 31 | #endif /* __OMAP_NOKIA_DSI_PANEL_H */ | ||
