Commit 474f64cb authored by Maarten Lankhorst's avatar Maarten Lankhorst
Browse files

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: 66a0f6b9 ("drm/xe/display: handle HPD polling in display runtime suspend/resume")
Cc: Arun R Murthy <arun.r.murthy@intel.com>
Cc: Vinod Govindapillai <vinod.govindapillai@intel.com>
Signed-off-by: default avatarMaarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: default avatarLucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: default avatarVinod Govindapillai <vinod.govindapillai@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240905150052.174895-2-maarten.lankhorst@linux.intel.com
parent 9db969b3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -416,7 +416,7 @@ int xe_pm_runtime_suspend(struct xe_device *xe)
		xe_display_pm_suspend_late(xe);
out:
	if (err)
		xe_display_pm_resume(xe, true);
		xe_display_pm_runtime_resume(xe);
	xe_rpm_lockmap_release(xe);
	xe_pm_write_callback_task(xe, NULL);
	return err;