From: Sunil Khatri Date: Tue, 24 Mar 2026 07:48:28 +0000 (+0530) Subject: drm/amdgpu/userq: dont use goto to jump when at end of function X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=473527e70e73b6f29b54242b8de0dcb459829856;p=thirdparty%2Fkernel%2Flinux.git drm/amdgpu/userq: dont use goto to jump when at end of function In function amdgpu_userq_restore_worker we dont need to use goto as we already in the end of function and it will exit naturally. Signed-off-by: Sunil Khatri Reviewed-by: Christian König Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c index b75b44a3169bc..f3fdfe535d02a 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_userq.c @@ -1227,10 +1227,8 @@ static void amdgpu_userq_restore_worker(struct work_struct *work) } ret = amdgpu_userq_restore_all(uq_mgr); - if (ret) { + if (ret) drm_file_err(uq_mgr->file, "Failed to restore all queues\n"); - goto unlock; - } unlock: mutex_unlock(&uq_mgr->userq_mutex);