1 #ifndef __ASM_SH_KFR2R09_H
2 #define __ASM_SH_KFR2R09_H
3 
4 #include <video/sh_mobile_lcdc.h>
5 
6 #if defined(CONFIG_FB_SH_MOBILE_LCDC) || defined(CONFIG_FB_SH_MOBILE_LCDC_MODULE)
7 int kfr2r09_lcd_setup(void *sys_ops_handle,
8 		      struct sh_mobile_lcdc_sys_bus_ops *sys_ops);
9 void kfr2r09_lcd_start(void *sys_ops_handle,
10 		       struct sh_mobile_lcdc_sys_bus_ops *sys_ops);
11 #else
12 static int kfr2r09_lcd_setup(void *sys_ops_handle,
13 				struct sh_mobile_lcdc_sys_bus_ops *sys_ops)
14 {
15 	return -ENODEV;
16 }
17 static void kfr2r09_lcd_start(void *sys_ops_handle,
18 				struct sh_mobile_lcdc_sys_bus_ops *sys_ops)
19 {
20 }
21 #endif
22 
23 #endif /* __ASM_SH_KFR2R09_H */
24