mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
PM / devfreq: exynos4: Use SIMPLE_DEV_PM_OPS macro
This patch use SIMPLE_DEV_PM_OPS macro instead of legacy method. Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> Reviewed-by: Tomasz Figa <t.figa@samsung.com> Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
This commit is contained in:
parent
45c58e93c5
commit
60d6977c25
@ -1119,6 +1119,7 @@ static int exynos4_busfreq_remove(struct platform_device *pdev)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_PM_SLEEP
|
||||||
static int exynos4_busfreq_resume(struct device *dev)
|
static int exynos4_busfreq_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
struct busfreq_data *data = dev_get_drvdata(dev);
|
struct busfreq_data *data = dev_get_drvdata(dev);
|
||||||
@ -1126,10 +1127,9 @@ static int exynos4_busfreq_resume(struct device *dev)
|
|||||||
busfreq_mon_reset(data);
|
busfreq_mon_reset(data);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static const struct dev_pm_ops exynos4_busfreq_pm = {
|
static SIMPLE_DEV_PM_OPS(exynos4_busfreq_pm_ops, NULL, exynos4_busfreq_resume);
|
||||||
.resume = exynos4_busfreq_resume,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct platform_device_id exynos4_busfreq_id[] = {
|
static const struct platform_device_id exynos4_busfreq_id[] = {
|
||||||
{ "exynos4210-busfreq", TYPE_BUSF_EXYNOS4210 },
|
{ "exynos4210-busfreq", TYPE_BUSF_EXYNOS4210 },
|
||||||
@ -1145,7 +1145,7 @@ static struct platform_driver exynos4_busfreq_driver = {
|
|||||||
.driver = {
|
.driver = {
|
||||||
.name = "exynos4-busfreq",
|
.name = "exynos4-busfreq",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.pm = &exynos4_busfreq_pm,
|
.pm = &exynos4_busfreq_pm_ops,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user