omapfb.h (576B)
1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2/* 3 * File: include/linux/omapfb.h 4 * 5 * Framebuffer driver for TI OMAP boards 6 * 7 * Copyright (C) 2004 Nokia Corporation 8 * Author: Imre Deak <imre.deak@nokia.com> 9 */ 10#ifndef __LINUX_OMAPFB_H__ 11#define __LINUX_OMAPFB_H__ 12 13#include <uapi/linux/omapfb.h> 14 15 16struct omap_lcd_config { 17 char panel_name[16]; 18 char ctrl_name[16]; 19 s16 nreset_gpio; 20 u8 data_lines; 21}; 22 23struct omapfb_platform_data { 24 struct omap_lcd_config lcd; 25}; 26 27void __init omapfb_set_lcd_config(const struct omap_lcd_config *config); 28 29#endif /* __OMAPFB_H */