David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 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> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 9 | */ |
| 10 | #ifndef __LINUX_OMAPFB_H__ |
| 11 | #define __LINUX_OMAPFB_H__ |
| 12 | |
| 13 | #include <uapi/linux/omapfb.h> |
| 14 | |
| 15 | |
| 16 | struct omap_lcd_config { |
| 17 | char panel_name[16]; |
| 18 | char ctrl_name[16]; |
| 19 | s16 nreset_gpio; |
| 20 | u8 data_lines; |
| 21 | }; |
| 22 | |
| 23 | struct omapfb_platform_data { |
| 24 | struct omap_lcd_config lcd; |
| 25 | }; |
| 26 | |
| 27 | void __init omapfb_set_lcd_config(const struct omap_lcd_config *config); |
| 28 | |
| 29 | #endif /* __OMAPFB_H */ |