aboutsummaryrefslogtreecommitdiffstats
path: root/include/video
diff options
context:
space:
mode:
Diffstat (limited to 'include/video')
-rw-r--r--include/video/sh_mobile_lcdc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/video/sh_mobile_lcdc.h b/include/video/sh_mobile_lcdc.h
index 62be2c933e9f..ecde6aad6f29 100644
--- a/include/video/sh_mobile_lcdc.h
+++ b/include/video/sh_mobile_lcdc.h
@@ -154,8 +154,6 @@ struct sh_mobile_lcdc_board_cfg {
154 struct sh_mobile_lcdc_sys_bus_ops *sys_ops); 154 struct sh_mobile_lcdc_sys_bus_ops *sys_ops);
155 void (*display_on)(void); 155 void (*display_on)(void);
156 void (*display_off)(void); 156 void (*display_off)(void);
157 int (*set_brightness)(int brightness);
158 int (*get_brightness)(void);
159}; 157};
160 158
161struct sh_mobile_lcdc_lcd_size_cfg { /* width and height of panel in mm */ 159struct sh_mobile_lcdc_lcd_size_cfg { /* width and height of panel in mm */
@@ -167,6 +165,8 @@ struct sh_mobile_lcdc_lcd_size_cfg { /* width and height of panel in mm */
167struct sh_mobile_lcdc_bl_info { 165struct sh_mobile_lcdc_bl_info {
168 const char *name; 166 const char *name;
169 int max_brightness; 167 int max_brightness;
168 int (*set_brightness)(int brightness);
169 int (*get_brightness)(void);
170}; 170};
171 171
172struct sh_mobile_lcdc_chan_cfg { 172struct sh_mobile_lcdc_chan_cfg {