brintos

brintos / linux-shallow public Read only

0
0
Text · 576 B · 63c9d47 Raw
30 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * File: include/linux/omapfb.h4 *5 * Framebuffer driver for TI OMAP boards6 *7 * Copyright (C) 2004 Nokia Corporation8 * 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 */30