1. 18 2月, 2020 2 次提交
  2. 11 2月, 2020 2 次提交
  3. 10 1月, 2020 2 次提交
  4. 09 1月, 2020 2 次提交
  5. 20 12月, 2019 5 次提交
  6. 09 12月, 2019 2 次提交
  7. 06 11月, 2019 4 次提交
  8. 09 10月, 2019 1 次提交
  9. 17 7月, 2019 1 次提交
  10. 31 5月, 2019 1 次提交
  11. 29 5月, 2019 1 次提交
  12. 24 1月, 2019 1 次提交
  13. 06 10月, 2018 1 次提交
    • K
      treewide: Replace more open-coded allocation size multiplications · 329e0989
      Kees Cook 提交于
      As done treewide earlier, this catches several more open-coded
      allocation size calculations that were added to the kernel during the
      merge window. This performs the following mechanical transformations
      using Coccinelle:
      
      	kvmalloc(a * b, ...) -> kvmalloc_array(a, b, ...)
      	kvzalloc(a * b, ...) -> kvcalloc(a, b, ...)
      	devm_kzalloc(..., a * b, ...) -> devm_kcalloc(..., a, b, ...)
      Signed-off-by: NKees Cook <keescook@chromium.org>
      329e0989
  14. 27 8月, 2018 2 次提交
  15. 24 6月, 2018 1 次提交
  16. 26 7月, 2017 1 次提交
    • R
      drm: Convert to using %pOF instead of full_name · 4bf99144
      Rob Herring 提交于
      Now that we have a custom printf format specifier, convert users of
      full_name to use %pOF instead. This is preparation to remove storing
      of the full path string for each node.
      Signed-off-by: NRob Herring <robh@kernel.org>
      Cc: Russell King <linux@armlinux.org.uk>
      Cc: David Airlie <airlied@linux.ie>
      Cc: Daniel Vetter <daniel.vetter@intel.com>
      Cc: Jani Nikula <jani.nikula@linux.intel.com>
      Cc: Sean Paul <seanpaul@chromium.org>
      Cc: Inki Dae <inki.dae@samsung.com>
      Cc: Joonyoung Shim <jy0922.shim@samsung.com>
      Cc: Seung-Woo Kim <sw0312.kim@samsung.com>
      Cc: Kyungmin Park <kyungmin.park@samsung.com>
      Cc: Kukjin Kim <kgene@kernel.org>
      Cc: Krzysztof Kozlowski <krzk@kernel.org>
      Cc: Javier Martinez Canillas <javier@osg.samsung.com>
      Cc: Xinliang Liu <z.liuxinliang@hisilicon.com>
      Cc: Rongrong Zou <zourongrong@gmail.com>
      Cc: Xinwei Kong <kong.kongxinwei@hisilicon.com>
      Cc: Chen Feng <puck.chen@hisilicon.com>
      Cc: CK Hu <ck.hu@mediatek.com>
      Cc: Philipp Zabel <p.zabel@pengutronix.de>
      Cc: Matthias Brugger <matthias.bgg@gmail.com>
      Cc: Neil Armstrong <narmstrong@baylibre.com>
      Cc: Carlo Caione <carlo@caione.org>
      Cc: Kevin Hilman <khilman@baylibre.com>
      Cc: Thierry Reding <thierry.reding@gmail.com>
      Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
      Cc: Mark Yao <mark.yao@rock-chips.com>
      Cc: Heiko Stuebner <heiko@sntech.de>
      Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
      Cc: Chen-Yu Tsai <wens@csie.org>
      Cc: Jyri Sarha <jsarha@ti.com>
      Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
      Cc: dri-devel@lists.freedesktop.org
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: linux-samsung-soc@vger.kernel.org
      Cc: linux-mediatek@lists.infradead.org
      Cc: linux-amlogic@lists.infradead.org
      Cc: linux-renesas-soc@vger.kernel.org
      Cc: linux-rockchip@lists.infradead.org
      Partially-Reviewed-by: NLaurent Pinchart <laurent.pinchart@ideasonboard.com>
      Reviewed-by: NPhilipp Zabel <p.zabel@pengutronix.de>
      Acked-by: NMaxime Ripard <maxime.ripard@free-electrons.com>
      [seanpaul changed subject prefix and fixed conflict in stm/ltdc.c]
      Signed-off-by: NSean Paul <seanpaul@chromium.org>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      4bf99144
  17. 30 6月, 2017 2 次提交
  18. 27 6月, 2017 1 次提交
  19. 26 5月, 2017 1 次提交
  20. 08 4月, 2017 1 次提交
  21. 22 2月, 2017 1 次提交
  22. 18 1月, 2017 1 次提交
  23. 11 8月, 2016 2 次提交
    • B
      drm/mediatek: set mt8173 dithering function · 72164364
      Bibby Hsieh 提交于
      Some panels only accept bpc (bit per color) 6-bit.
      But, the default bpc in mt8173 display data path is 8-bit.
      If we didn't enable dithering function to convert bpc,
      display cannot show the smooth grayscale image.
      
      In mt8173, the dithering function in OD (OverDrive) and
      GAMMA module, we have to config them with
      connector->display_mode.bpc when CRTC initial.
      
      1. Clear the default value at *_DITHER_5 and *_DITHER_7 register.
      2. Calculate the LSB_ERR_SHIFT bits and ADD_LSHIFT bits two values.
      i.e. Input bpc of OD is 10 bits, we assume the bpc of panel is 6-bit,
      so, we need to set 4-bit to LSB_ERR_SHIFT and ADD_LSHIFT bits respectively.
      3. Then, set the OD or GAMMA to dithering mode depends on path-1 or path-2.
      Signed-off-by: NBibby Hsieh <bibby.hsieh@mediatek.com>
      Signed-off-by: NPhilipp Zabel <p.zabel@pengutronix.de>
      72164364
    • B
      drm/mediatek: Add gamma correction. · 2f3f4dda
      Bibby Hsieh 提交于
      Add gamma set function to correct brightness values.
      It applies arbitrary mapping curve to compensate the
      incorrect transfer function of the panel.
      Signed-off-by: NBibby Hsieh <bibby.hsieh@mediatek.com>
      Signed-off-by: NPhilipp Zabel <p.zabel@pengutronix.de>
      2f3f4dda
  24. 09 8月, 2016 2 次提交