Commit c54a8f1f authored by Bernard Zhao's avatar Bernard Zhao Committed by Neil Armstrong
Browse files

drm/meson: pm resume add return errno branch



pm_resump api did not handle drm_mode_config_helper_resume error.
This change add handle to return drm_mode_config_helper_resume`s
error number. This code logic is aligned with api pm_suspend.
After this change, the code maybe a bit readable.

Signed-off-by: default avatarBernard Zhao <bernard@vivo.com>
Signed-off-by: default avatarNeil Armstrong <narmstrong@baylibre.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200428131747.2099-1-bernard@vivo.com
parent 5fe89a6a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -412,9 +412,7 @@ static int __maybe_unused meson_drv_pm_resume(struct device *dev)
	if (priv->afbcd.ops)
		priv->afbcd.ops->init(priv);

	drm_mode_config_helper_resume(priv->drm);

	return 0;
	return drm_mode_config_helper_resume(priv->drm);
}

static int compare_of(struct device *dev, void *data)