1. 02 9月, 2017 2 次提交
  2. 31 8月, 2017 1 次提交
  3. 30 8月, 2017 1 次提交
  4. 28 8月, 2017 5 次提交
  5. 24 8月, 2017 2 次提交
  6. 23 8月, 2017 1 次提交
  7. 22 8月, 2017 5 次提交
  8. 21 8月, 2017 4 次提交
  9. 19 8月, 2017 1 次提交
  10. 18 8月, 2017 16 次提交
  11. 17 8月, 2017 2 次提交
    • D
      Merge tag 'drm-misc-next-2017-08-16' of git://anongit.freedesktop.org/git/drm-misc into drm-next · 3154b133
      Dave Airlie 提交于
      UAPI Changes:
      - vc4: Allow userspace to dictate rendering order in submit_cl ioctl (Eric)
      
      Cross-subsystem Changes:
      - vboxvideo: One of Cihangir's patches applies to vboxvideo which is maintained
      	     in staging
      
      Core Changes:
      - atomic_legacy_backoff is officially killed (Daniel)
      - Extract drm_device.h (Daniel)
      - Unregister drm device on unplug (Daniel)
      - Rename deprecated drm_*_(un)?reference functions to drm_*_{get|put} (Cihangir)
      
      Driver Changes:
      - vc4: Error/destroy path cleanups, log level demotion, edid leak (Eric)
      - various: Make various drm_*_funcs structs const (Bhumika)
      - tinydrm: add support for LEGO MINDSTORMS EV3 LCD (David)
      - various: Second half of .dumb_{map_offset|destroy} defaults set (Noralf)
      
      Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
      Cc: Eric Anholt <eric@anholt.net>
      Cc: Bhumika Goyal <bhumirks@gmail.com>
      Cc: Cihangir Akturk <cakturk@gmail.com>
      Cc: David Lechner <david@lechnology.com>
      Cc: Noralf Trønnes <noralf@tronnes.org>
      
      * tag 'drm-misc-next-2017-08-16' of git://anongit.freedesktop.org/git/drm-misc: (50 commits)
        drm/gem-cma-helper: Remove drm_gem_cma_dumb_map_offset()
        drm/virtio: Use the drm_driver.dumb_destroy default
        drm/bochs: Use the drm_driver.dumb_destroy default
        drm/mgag200: Use the drm_driver.dumb_destroy default
        drm/exynos: Use .dumb_map_offset and .dumb_destroy defaults
        drm/msm: Use the drm_driver.dumb_destroy default
        drm/ast: Use the drm_driver.dumb_destroy default
        drm/qxl: Use the drm_driver.dumb_destroy default
        drm/udl: Use the drm_driver.dumb_destroy default
        drm/cirrus: Use the drm_driver.dumb_destroy default
        drm/tegra: Use .dumb_map_offset and .dumb_destroy defaults
        drm/gma500: Use .dumb_map_offset and .dumb_destroy defaults
        drm/mxsfb: Use .dumb_map_offset and .dumb_destroy defaults
        drm/meson: Use .dumb_map_offset and .dumb_destroy defaults
        drm/kirin: Use .dumb_map_offset and .dumb_destroy defaults
        drm/vc4: Continue the switch to drm_*_put() helpers
        drm/vc4: Fix leak of HDMI EDID
        dma-buf: fix reservation_object_wait_timeout_rcu to wait correctly v2
        dma-buf: add reservation_object_copy_fences (v2)
        drm/tinydrm: add support for LEGO MINDSTORMS EV3 LCD
        ...
      3154b133
    • C
      drm/tinydrm: make function st7586_pipe_enable static · f3bbc908
      Colin Ian King 提交于
      The function st7586_pipe_enable  is local to the source
      and does not need to be in global scope, so make it static.
      
      Cleans up sparse warning:
      symbol 'st7586_pipe_enable' was not declared. Should it be static?
      Signed-off-by: NColin Ian King <colin.king@canonical.com>
      Acked-By: NDavid Lechner <david@lechnology.com>
      [noralf: fixed: Alignment should match open parenthesis]
      Signed-off-by: NNoralf Trønnes <noralf@tronnes.org>
      Link: https://patchwork.freedesktop.org/patch/msgid/20170816092306.10969-1-colin.king@canonical.com
      f3bbc908