tpm_atmel: Use struct dev_pm_ops for power management
Make the tpm_atmel driver define its PM callbacks through a struct dev_pm_ops object rather than by using legacy PM hooks in struct platform_driver. This allows the driver to use tpm_pm_suspend() and tpm_pm_resume() as its PM callbacks directly, without defining its own PM callback routines. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
This commit is contained in:
parent
035e2ce8eb
commit
8324be0538
1 changed files with 2 additions and 10 deletions
|
@ -168,22 +168,14 @@ static void atml_plat_remove(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int tpm_atml_suspend(struct platform_device *dev, pm_message_t msg)
|
static SIMPLE_DEV_PM_OPS(tpm_atml_pm, tpm_pm_suspend, tpm_pm_resume);
|
||||||
{
|
|
||||||
return tpm_pm_suspend(&dev->dev);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int tpm_atml_resume(struct platform_device *dev)
|
|
||||||
{
|
|
||||||
return tpm_pm_resume(&dev->dev);
|
|
||||||
}
|
|
||||||
static struct platform_driver atml_drv = {
|
static struct platform_driver atml_drv = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "tpm_atmel",
|
.name = "tpm_atmel",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
|
.pm = &tpm_atml_pm,
|
||||||
},
|
},
|
||||||
.suspend = tpm_atml_suspend,
|
|
||||||
.resume = tpm_atml_resume,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init init_atmel(void)
|
static int __init init_atmel(void)
|
||||||
|
|
Loading…
Add table
Reference in a new issue