[PATCH 01/29] drm/amdgpu: switch to drm_*{get,put} helpers

2017-08-03 Thread Cihangir Akturk
drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility functions to use the new APIs. Signed-off-by: Cihangir Akturk --- drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c

Re: [PATCH 01/29] drm/amdgpu: switch to drm_*{get,put} helpers

2017-08-03 Thread Christian König
Am 03.08.2017 um 13:58 schrieb Cihangir Akturk: drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility functions to use the new APIs. Signed-off-by: Cihangir Akturk