Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 148ba09c authored by Inki Dae's avatar Inki Dae
Browse files

drm/exynos: dp: remove suspend/resume functions



This patch removes unnecessary pm suspend/resume functions.

All kms sub drivers will be controlled by top of Exynos drm driver
and connector dpms so these sub drivers shouldn't have their own
pm interfaces.

Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
Reviewed-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 10d97d58
Loading
Loading
Loading
Loading
+0 −23
Original line number Original line Diff line number Diff line
@@ -1383,28 +1383,6 @@ static int exynos_dp_remove(struct platform_device *pdev)
	return 0;
	return 0;
}
}


#ifdef CONFIG_PM_SLEEP
static int exynos_dp_suspend(struct device *dev)
{
	struct exynos_dp_device *dp = dev_get_drvdata(dev);

	exynos_dp_disable(&dp->encoder);
	return 0;
}

static int exynos_dp_resume(struct device *dev)
{
	struct exynos_dp_device *dp = dev_get_drvdata(dev);

	exynos_dp_enable(&dp->encoder);
	return 0;
}
#endif

static const struct dev_pm_ops exynos_dp_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(exynos_dp_suspend, exynos_dp_resume)
};

static const struct of_device_id exynos_dp_match[] = {
static const struct of_device_id exynos_dp_match[] = {
	{ .compatible = "samsung,exynos5-dp" },
	{ .compatible = "samsung,exynos5-dp" },
	{},
	{},
@@ -1417,7 +1395,6 @@ struct platform_driver dp_driver = {
	.driver		= {
	.driver		= {
		.name	= "exynos-dp",
		.name	= "exynos-dp",
		.owner	= THIS_MODULE,
		.owner	= THIS_MODULE,
		.pm	= &exynos_dp_pm_ops,
		.of_match_table = exynos_dp_match,
		.of_match_table = exynos_dp_match,
	},
	},
};
};