Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * File: include/linux/omapfb.h
0004  *
0005  * Framebuffer driver for TI OMAP boards
0006  *
0007  * Copyright (C) 2004 Nokia Corporation
0008  * Author: Imre Deak <imre.deak@nokia.com>
0009  */
0010 #ifndef __LINUX_OMAPFB_H__
0011 #define __LINUX_OMAPFB_H__
0012 
0013 #include <uapi/linux/omapfb.h>
0014 
0015 
0016 struct omap_lcd_config {
0017     char panel_name[16];
0018     char ctrl_name[16];
0019     s16  nreset_gpio;
0020     u8   data_lines;
0021 };
0022 
0023 struct omapfb_platform_data {
0024     struct omap_lcd_config      lcd;
0025 };
0026 
0027 void __init omapfb_set_lcd_config(const struct omap_lcd_config *config);
0028 
0029 #endif /* __OMAPFB_H */