Skip to content

Commit 65112db

Browse files
singh-apoorva1510nirmoy
authored andcommitted
drm/xe: Remove NULL check of lrc->bo in xe_lrc_snapshot_capture()
- lrc->bo NULL check is not needed in xe_lrc_snapshot_capture() as its already been taken care of in xe_lrc_init(). Signed-off-by: Apoorva Singh <apoorva.singh@intel.com> Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240816080355.897256-1-apoorva.singh@intel.com Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
1 parent ff9c674 commit 65112db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/xe/xe_lrc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1649,7 +1649,7 @@ struct xe_lrc_snapshot *xe_lrc_snapshot_capture(struct xe_lrc *lrc)
16491649
if (!snapshot)
16501650
return NULL;
16511651

1652-
if (lrc->bo && lrc->bo->vm)
1652+
if (lrc->bo->vm)
16531653
xe_vm_get(lrc->bo->vm);
16541654

16551655
snapshot->context_desc = xe_lrc_ggtt_addr(lrc);

0 commit comments

Comments
 (0)