An error occurred fetching the project authors.
  1. 10 Feb, 2016 11 commits
  2. 28 Jan, 2016 1 commit
  3. 13 Jan, 2016 2 commits
  4. 18 Dec, 2015 3 commits
  5. 16 Dec, 2015 1 commit
  6. 04 Dec, 2015 1 commit
  7. 20 Nov, 2015 1 commit
  8. 18 Nov, 2015 1 commit
  9. 16 Nov, 2015 5 commits
  10. 04 Nov, 2015 1 commit
  11. 21 Oct, 2015 2 commits
  12. 14 Oct, 2015 2 commits
  13. 07 Oct, 2015 1 commit
    • Arnd Bergmann's avatar
      drm/amdgpu: fix 32-bit compiler warning · 028423b0
      Arnd Bergmann authored
      The new amdgpu driver passes a user space pointer in a 64-bit structure
      member, which is the correct way to do it, but it attempts to
      directly cast it to a __user pointer in the kernel, which causes
      a warning in three places:
      
      drm/amd/amdgpu/amdgpu_cs.c: In function 'amdgpu_cs_parser_init':
      drm/amd/amdgpu/amdgpu_cs.c:180:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
        chunk_array_user = (uint64_t __user *)(cs->in.chunks);
      
      This changes all three to add an intermediate cast to 'unsigned long'
      as other drivers do. This avoids the warning and works correctly on
      both 32-bit and 64-bit architectures.
      
      Fixes: e60b344f ("drm/amdgpu: optimize amdgpu_parser_init")
      Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
      028423b0
  14. 29 Sep, 2015 1 commit
  15. 23 Sep, 2015 6 commits
  16. 03 Sep, 2015 1 commit