Path: blob/master/arch/sh/include/mach-kfr2r09/mach/kfr2r09.h
26516 views
/* SPDX-License-Identifier: GPL-2.0 */1#ifndef __ASM_SH_KFR2R09_H2#define __ASM_SH_KFR2R09_H34#include <video/sh_mobile_lcdc.h>56#if defined(CONFIG_FB_SH_MOBILE_LCDC) || defined(CONFIG_FB_SH_MOBILE_LCDC_MODULE)7int kfr2r09_lcd_setup(void *sys_ops_handle,8struct sh_mobile_lcdc_sys_bus_ops *sys_ops);9void kfr2r09_lcd_start(void *sys_ops_handle,10struct sh_mobile_lcdc_sys_bus_ops *sys_ops);11#else12static int kfr2r09_lcd_setup(void *sys_ops_handle,13struct sh_mobile_lcdc_sys_bus_ops *sys_ops)14{15return -ENODEV;16}17static void kfr2r09_lcd_start(void *sys_ops_handle,18struct sh_mobile_lcdc_sys_bus_ops *sys_ops)19{20}21#endif2223#endif /* __ASM_SH_KFR2R09_H */242526