Skip to content

Commit f1a4dce

Browse files
mlankhorstlucasdemarchi
authored andcommitted
drm/xe: Fix missing conversion to xe_display_pm_runtime_resume
This error path was missed when converting away from xe_display_pm_resume with second argument. Fixes: 66a0f6b ("drm/xe/display: handle HPD polling in display runtime suspend/resume") Cc: Arun R Murthy <[email protected]> Cc: Vinod Govindapillai <[email protected]> Signed-off-by: Maarten Lankhorst <[email protected]> Reviewed-by: Lucas De Marchi <[email protected]> Reviewed-by: Vinod Govindapillai <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] (cherry picked from commit 474f64c) Signed-off-by: Lucas De Marchi <[email protected]>
1 parent da9a73b commit f1a4dce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/xe/xe_pm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ int xe_pm_runtime_suspend(struct xe_device *xe)
416416
xe_display_pm_suspend_late(xe);
417417
out:
418418
if (err)
419-
xe_display_pm_resume(xe, true);
419+
xe_display_pm_runtime_resume(xe);
420420
xe_rpm_lockmap_release(xe);
421421
xe_pm_write_callback_task(xe, NULL);
422422
return err;

0 commit comments

Comments
 (0)