1 /* 2 * drivers/video/fbdev/sunxi/lcd_fb/dev_lcd_fb/dev_lcd_fb.h 3 * 4 * Copyright (c) 2007-2019 Allwinnertech Co., Ltd. 5 * Author: zhengxiaobin <zhengxiaobin@allwinnertech.com> 6 * 7 * This software is licensed under the terms of the GNU General Public 8 * License version 2, as published by the Free Software Foundation, and 9 * may be copied, distributed, and modified under those terms. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 */ 17 #ifndef _DEV_LCD_FB_H 18 #define _DEV_LCD_FB_H 19 #include "include.h" 20 21 extern struct dev_lcd_fb_t g_drv_info; 22 23 struct dev_lcd_fb_t { 24 struct device *device; 25 struct work_struct start_work; 26 unsigned char lcd_fb_num; 27 }; 28 29 #endif /*End of file*/ 30