Commit 884d7d03 authored by Raphael Gallais-Pou's avatar Raphael Gallais-Pou Committed by Philippe Cornu
Browse files

drm/stm: dsi: use new SYSTEM_SLEEP_PM_OPS() macro



Use RUNTIME_PM_OPS() instead of the old SET_SYSTEM_SLEEP_PM_OPS().
This means we don't need  __maybe_unused on the functions.

Signed-off-by: default avatarRaphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
Acked-by: default avatarYannick Fertre <yannick.fertre@foss.st.com>
Tested-by: default avatarYannick Fertre <yannick.fertre@foss.st.com>
Signed-off-by: default avatarPhilippe Cornu <philippe.cornu@foss.st.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240129104106.43141-2-raphael.gallais-pou@foss.st.com
parent aca1cbc1
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -544,7 +544,7 @@ static void dw_mipi_dsi_stm_remove(struct platform_device *pdev)
	regulator_disable(dsi->vdd_supply);
}

static int __maybe_unused dw_mipi_dsi_stm_suspend(struct device *dev)
static int dw_mipi_dsi_stm_suspend(struct device *dev)
{
	struct dw_mipi_dsi_stm *dsi = dw_mipi_dsi_stm_plat_data.priv_data;

@@ -556,7 +556,7 @@ static int __maybe_unused dw_mipi_dsi_stm_suspend(struct device *dev)
	return 0;
}

static int __maybe_unused dw_mipi_dsi_stm_resume(struct device *dev)
static int dw_mipi_dsi_stm_resume(struct device *dev)
{
	struct dw_mipi_dsi_stm *dsi = dw_mipi_dsi_stm_plat_data.priv_data;
	int ret;
@@ -580,7 +580,7 @@ static int __maybe_unused dw_mipi_dsi_stm_resume(struct device *dev)
}

static const struct dev_pm_ops dw_mipi_dsi_stm_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(dw_mipi_dsi_stm_suspend,
	SYSTEM_SLEEP_PM_OPS(dw_mipi_dsi_stm_suspend,
			    dw_mipi_dsi_stm_resume)
};