Skip to content

Commit 8a04e34

Browse files
hghimiranirmoy
authored andcommitted
drm/xe: Remove unrequired NULL check in xe_sched_job_free_fences
dma_fence_chain_free() can handle NULL input, there is no need for NULL check by caller. Signed-off-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Jagmeet Randhawa <jagmeet.randhawa@intel.com> Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240820090230.3258128-3-himal.prasad.ghimiray@intel.com Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
1 parent 19f01d4 commit 8a04e34

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/gpu/drm/xe/xe_sched_job.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ static void xe_sched_job_free_fences(struct xe_sched_job *job)
8989

9090
if (ptrs->lrc_fence)
9191
xe_lrc_free_seqno_fence(ptrs->lrc_fence);
92-
if (ptrs->chain_fence)
93-
dma_fence_chain_free(ptrs->chain_fence);
92+
dma_fence_chain_free(ptrs->chain_fence);
9493
}
9594
}
9695

0 commit comments

Comments
 (0)