GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / plat-omap / include / plat / nokia-dsi-panel.h
blob01ab6572ccbbb35c19f9e16db3d806f1701f6f63
1 #ifndef __ARCH_ARM_PLAT_OMAP_NOKIA_DSI_PANEL_H
2 #define __ARCH_ARM_PLAT_OMAP_NOKIA_DSI_PANEL_H
4 #include "display.h"
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
16 struct nokia_dsi_panel_data {
17 const char *name;
19 int reset_gpio;
21 bool use_ext_te;
22 int ext_te_gpio;
24 bool use_esd_check;
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);
31 #endif /* __ARCH_ARM_PLAT_OMAP_NOKIA_DSI_PANEL_H */