mirror of https://gitee.com/openkylin/linux.git
video: exynos mipi dsi: Do not use deprecated suspend/resume callbacks
Use proper PM ops from struct dev_pm_ops rather than the deprecated ones. Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Donghwa Lee <dh09.lee@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
This commit is contained in:
parent
c932b27311
commit
3bfc9b835a
|
@ -517,10 +517,10 @@ static int __devexit exynos_mipi_dsi_remove(struct platform_device *pdev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PM
|
#ifdef CONFIG_PM_SLEEP
|
||||||
static int exynos_mipi_dsi_suspend(struct platform_device *pdev,
|
static int exynos_mipi_dsi_suspend(struct device *dev)
|
||||||
pm_message_t state)
|
|
||||||
{
|
{
|
||||||
|
struct platform_device *pdev = to_platform_device(dev);
|
||||||
struct mipi_dsim_device *dsim = platform_get_drvdata(pdev);
|
struct mipi_dsim_device *dsim = platform_get_drvdata(pdev);
|
||||||
struct mipi_dsim_lcd_driver *client_drv = dsim->dsim_lcd_drv;
|
struct mipi_dsim_lcd_driver *client_drv = dsim->dsim_lcd_drv;
|
||||||
struct mipi_dsim_lcd_device *client_dev = dsim->dsim_lcd_dev;
|
struct mipi_dsim_lcd_device *client_dev = dsim->dsim_lcd_dev;
|
||||||
|
@ -546,8 +546,9 @@ static int exynos_mipi_dsi_suspend(struct platform_device *pdev,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int exynos_mipi_dsi_resume(struct platform_device *pdev)
|
static int exynos_mipi_dsi_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
|
struct platform_device *pdev = to_platform_device(dev);
|
||||||
struct mipi_dsim_device *dsim = platform_get_drvdata(pdev);
|
struct mipi_dsim_device *dsim = platform_get_drvdata(pdev);
|
||||||
struct mipi_dsim_lcd_driver *client_drv = dsim->dsim_lcd_drv;
|
struct mipi_dsim_lcd_driver *client_drv = dsim->dsim_lcd_drv;
|
||||||
struct mipi_dsim_lcd_device *client_dev = dsim->dsim_lcd_dev;
|
struct mipi_dsim_lcd_device *client_dev = dsim->dsim_lcd_dev;
|
||||||
|
@ -579,19 +580,19 @@ static int exynos_mipi_dsi_resume(struct platform_device *pdev)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
#define exynos_mipi_dsi_suspend NULL
|
|
||||||
#define exynos_mipi_dsi_resume NULL
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static const struct dev_pm_ops exynos_mipi_dsi_pm_ops = {
|
||||||
|
SET_SYSTEM_SLEEP_PM_OPS(exynos_mipi_dsi_suspend, exynos_mipi_dsi_resume)
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_driver exynos_mipi_dsi_driver = {
|
static struct platform_driver exynos_mipi_dsi_driver = {
|
||||||
.probe = exynos_mipi_dsi_probe,
|
.probe = exynos_mipi_dsi_probe,
|
||||||
.remove = __devexit_p(exynos_mipi_dsi_remove),
|
.remove = __devexit_p(exynos_mipi_dsi_remove),
|
||||||
.suspend = exynos_mipi_dsi_suspend,
|
|
||||||
.resume = exynos_mipi_dsi_resume,
|
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "exynos-mipi-dsim",
|
.name = "exynos-mipi-dsim",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
|
.pm = &exynos_mipi_dsi_pm_ops,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue