diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2022-11-04 04:16:37 +0100 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2022-12-14 20:01:49 +0100 |
commit | b7ec002c05d8e01b961bf5d915cf2e42a4cff4dd (patch) | |
tree | 97fa5a24e5d5ef38ff9aa5196deeba28b3be1fd1 /include/video | |
parent | fbdev: omapfb: panel-nec-nl8048hl11: switch to using gpiod API (diff) | |
download | linux-b7ec002c05d8e01b961bf5d915cf2e42a4cff4dd.tar.xz linux-b7ec002c05d8e01b961bf5d915cf2e42a4cff4dd.zip |
fbdev: omapfb: panel-dpi: remove support for platform data
There are no users of panel_dpi_platform_data in the mainline
kernel so support for it can be removed from the panel driver.
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/omap-panel-data.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/video/omap-panel-data.h b/include/video/omap-panel-data.h index b7733150b55c..18172d7b97d0 100644 --- a/include/video/omap-panel-data.h +++ b/include/video/omap-panel-data.h @@ -31,25 +31,4 @@ struct connector_atv_platform_data { bool invert_polarity; }; -/** - * panel_dpi platform data - * @name: name for this display entity - * @source: name of the display entity used as a video source - * @data_lines: number of DPI datalines - * @display_timing: timings for this panel - * @backlight_gpio: gpio to enable/disable the backlight (or -1) - * @enable_gpio: gpio to enable/disable the panel (or -1) - */ -struct panel_dpi_platform_data { - const char *name; - const char *source; - - int data_lines; - - const struct display_timing *display_timing; - - int backlight_gpio; - int enable_gpio; -}; - #endif /* __OMAP_PANEL_DATA_H */ |