1. 01 5月, 2020 1 次提交
  2. 29 4月, 2020 4 次提交
  3. 23 4月, 2020 3 次提交
  4. 09 4月, 2020 1 次提交
  5. 02 4月, 2020 1 次提交
  6. 01 4月, 2020 2 次提交
  7. 19 3月, 2020 2 次提交
  8. 05 3月, 2020 5 次提交
  9. 26 2月, 2020 3 次提交
  10. 12 2月, 2020 1 次提交
  11. 07 2月, 2020 2 次提交
  12. 23 1月, 2020 1 次提交
  13. 17 1月, 2020 6 次提交
  14. 19 12月, 2019 6 次提交
  15. 12 12月, 2019 1 次提交
    • A
      drm/amd/display: include linux/slab.h where needed · aec43402
      Arnd Bergmann 提交于
      Calling kzalloc() and related functions requires the
      linux/slab.h header to be included:
      
      drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_resource.c: In function 'dcn21_ipp_create':
      drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_resource.c:679:3: error: implicit declaration of function 'kzalloc'; did you mean 'd_alloc'? [-Werror=implicit-function-declaration]
         kzalloc(sizeof(struct dcn10_ipp), GFP_KERNEL);
      
      A lot of other headers also miss a direct include in this file,
      but this is the only one that causes a problem for now.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      aec43402
  16. 11 12月, 2019 1 次提交
    • A
      drm/amd/display: include linux/slab.h where needed · 07b67280
      Arnd Bergmann 提交于
      Calling kzalloc() and related functions requires the
      linux/slab.h header to be included:
      
      drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_resource.c: In function 'dcn21_ipp_create':
      drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_resource.c:679:3: error: implicit declaration of function 'kzalloc'; did you mean 'd_alloc'? [-Werror=implicit-function-declaration]
         kzalloc(sizeof(struct dcn10_ipp), GFP_KERNEL);
      
      A lot of other headers also miss a direct include in this file,
      but this is the only one that causes a problem for now.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
      07b67280