[PATCH 20/29] drm/radeon: 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() adn 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/radeon/radeon_cs.c |

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

2017-08-03 Thread Alex Deucher
On Thu, Aug 3, 2017 at 8:08 AM, Christian König wrote: > 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() adn should not be >> used by new code. So convert all users of compatib

Re: [PATCH 20/29] drm/radeon: 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() adn should not be used by new code. So convert all users of compatibility functions to use the new APIs. Signed-off-by: Cihangir Akturk