Blame view

include/linux/omapfb.h 576 Bytes
1a59d1b8e   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-or-later */
91773a00f   Tomi Valkeinen   OMAP: OMAPFB: spl...
2
3
4
5
6
7
8
  /*
   * File: include/linux/omapfb.h
   *
   * Framebuffer driver for TI OMAP boards
   *
   * Copyright (C) 2004 Nokia Corporation
   * Author: Imre Deak <imre.deak@nokia.com>
91773a00f   Tomi Valkeinen   OMAP: OMAPFB: spl...
9
   */
91773a00f   Tomi Valkeinen   OMAP: OMAPFB: spl...
10
11
  #ifndef __LINUX_OMAPFB_H__
  #define __LINUX_OMAPFB_H__
607ca46e9   David Howells   UAPI: (Scripted) ...
12
  #include <uapi/linux/omapfb.h>
91773a00f   Tomi Valkeinen   OMAP: OMAPFB: spl...
13

91773a00f   Tomi Valkeinen   OMAP: OMAPFB: spl...
14

ad6c9101c   Igor Grinberg   ARM: OMAP1: move ...
15
16
17
18
19
20
  struct omap_lcd_config {
  	char panel_name[16];
  	char ctrl_name[16];
  	s16  nreset_gpio;
  	u8   data_lines;
  };
91773a00f   Tomi Valkeinen   OMAP: OMAPFB: spl...
21

91773a00f   Tomi Valkeinen   OMAP: OMAPFB: spl...
22
23
  struct omapfb_platform_data {
  	struct omap_lcd_config		lcd;
91773a00f   Tomi Valkeinen   OMAP: OMAPFB: spl...
24
  };
ddba6c7f7   Tomi Valkeinen   OMAP1: pass LCD c...
25
  void __init omapfb_set_lcd_config(const struct omap_lcd_config *config);
91773a00f   Tomi Valkeinen   OMAP: OMAPFB: spl...
26
  #endif /* __OMAPFB_H */