1. 03 9月, 2018 13 次提交
  2. 01 3月, 2018 2 次提交
  3. 19 12月, 2017 1 次提交
  4. 02 6月, 2017 2 次提交
  5. 02 11月, 2016 14 次提交
  6. 12 8月, 2016 1 次提交
  7. 03 6月, 2016 1 次提交
  8. 31 5月, 2016 1 次提交
    • A
      drm/omap: include gpio/consumer.h where needed · d0196c8d
      Arnd Bergmann 提交于
      A lot of the display drivers for OMAP use the gpio descriptor functions
      that are only available in linux/gpio.h if GPIOLIB is enabled and
      otherwise produce a build error:
      
      drivers/gpu/drm/omapdrm/displays/encoder-opa362.c: In function 'opa362_enable':
      drivers/gpu/drm/omapdrm/displays/encoder-opa362.c:101:3: error: implicit declaration of function 'gpiod_set_value_cansleep' [-Werror=implicit-function-declaration]
      drivers/gpu/drm/omapdrm/displays/panel-dpi.c: In function 'panel_dpi_probe_pdata':
      drivers/gpu/drm/omapdrm/displays/panel-dpi.c:189:23: error: implicit declaration of function 'gpio_to_desc' [-Werror=implicit-function-declaration]
      drivers/gpu/drm/omapdrm/displays/panel-sharp-ls037v7dw01.c: In function 'sharp_ls_enable':
      drivers/gpu/drm/omapdrm/displays/panel-sharp-ls037v7dw01.c:120:3: error: implicit declaration of function 'gpiod_set_value_cansleep' [-Werror=implicit-function-declaration]
      
      This replaces the existing linux/gpio.h with linux/gpio/consumer.h
      where needed. In case of panel-lgphilips-lb035q02.c however, we
      also have to include linux/gpio.h to get the definition of gpio_is_valid
      and gpio_set_value_cansleep that are used for the non-DT case.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      [tomi.valkeinen@ti.com: resolved conflicts]
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      d0196c8d
  9. 03 3月, 2016 1 次提交
  10. 29 12月, 2015 1 次提交
  11. 28 10月, 2015 1 次提交
  12. 22 10月, 2014 1 次提交
    • T
      OMAPDSS: set suppress_bind_attrs · 422ccbd5
      Tomi Valkeinen 提交于
      omapdss drivers cannot handle devices being unbound while the devices
      are part of a connected display pipeline. Module refcounts are used to
      prevent unloading the modules, but one can still manually unbind the
      devices via sysfs, causing crash.
      
      Set suppress_bind_attrs to disable the bind/unbind support via sysfs.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      422ccbd5
  13. 20 5月, 2014 1 次提交
    • T
      OMAPDSS: panel NEC-NL8048HL11 DT support · b36250d8
      Tomi Valkeinen 提交于
      We don't have any working boards using this panel right now, and the
      panel driver looks odd compared to the panel specs. For example, the
      panel spec does not mention any QVGA pin.
      
      So, while this patch adds DT support to the driver, it's not really
      supported and there are not bindings documentation for the panel until
      someone can verify how the panel actually works.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      Cc: Erik Gilling <konkers@android.com>
      b36250d8