1. 17 6月, 2013 2 次提交
  2. 11 6月, 2013 3 次提交
  3. 08 6月, 2013 2 次提交
  4. 31 5月, 2013 2 次提交
  5. 23 5月, 2013 1 次提交
  6. 21 5月, 2013 1 次提交
  7. 13 5月, 2013 1 次提交
  8. 10 5月, 2013 3 次提交
  9. 02 5月, 2013 4 次提交
  10. 01 5月, 2013 5 次提交
  11. 30 4月, 2013 2 次提交
    • V
      drm: Kill user_modes list and the associated ioctls · c55b6b3d
      Ville Syrjälä 提交于
      There is no way to use modes added to the user_modes list. We never
      look at the contents of said list in the kernel, and the only operations
      userspace can do are attach and detach. So the only "benefit" of this
      interface is wasting kernel memory.
      
      Fortunately it seems no real user space application ever used these
      ioctls. So just kill them.
      
      Also remove the prototypes for the non-existing drm_mode_addmode_ioctl()
      and drm_mode_rmmode_ioctl() functions.
      
      v2: Use drm_noop instead of completely removing the ioctls
      Signed-off-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      c55b6b3d
    • V
      drm: Silence some sparse warnings · ea9cbb06
      Ville Syrjälä 提交于
      drivers/gpu/drm/drm_pci.c:155:5: warning: symbol 'drm_pci_set_busid' was not declared. Should it be static?
      drivers/gpu/drm/drm_pci.c:197:5: warning: symbol 'drm_pci_set_unique' was not declared. Should it be static?
      drivers/gpu/drm/drm_pci.c:269:5: warning: symbol 'drm_pci_agp_init' was not declared. Should it be static?
      
      drivers/gpu/drm/drm_crtc.c:181:1: warning: symbol 'drm_get_dirty_info_name' was not declared. Should it be static?
      drivers/gpu/drm/drm_crtc.c:1123:5: warning: symbol 'drm_mode_group_init' was not declared. Should it be static?
      
      drivers/gpu/drm/drm_modes.c:918:6: warning: symbol 'drm_mode_validate_clocks' was not declared. Should it be static?
      Signed-off-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      ea9cbb06
  12. 26 4月, 2013 2 次提交
  13. 24 4月, 2013 1 次提交
  14. 12 4月, 2013 3 次提交
  15. 27 3月, 2013 1 次提交
  16. 16 3月, 2013 1 次提交
  17. 08 3月, 2013 1 次提交
  18. 22 2月, 2013 3 次提交
  19. 18 2月, 2013 2 次提交
    • R
      drm: i2c encoder helper wrappers · a7c47d6d
      Rob Clark 提交于
      Simplify life for drivers using an encoder-slave, so that they can make
      their drm_encoder_helper_funcs const, rather than needing to dynamically
      allocate and populate them.
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      a7c47d6d
    • R
      drm/cma: add debugfs helpers · 6f646095
      Rob Clark 提交于
      Add helper to display fb's which can be used directly in drm_info_list:
      
      static struct drm_info_list foo_debugfs_list[] = {
      		...
      		{ "fb",   drm_fb_cma_debugfs_show, 0 },
      };
      
      to display information about CMA fb objects, as well as a
      drm_gem_cma_describe() which can be used if the driver bothers to keep
      a list of CMA GEM objects.
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      6f646095