mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
acerhdf: convert to dev_pm_ops
Signed-off-by: Borislav Petkov <petkovbb@gmail.com> Signed-off-by: Peter Feuerer <peter@piie.net> Cc: Andreas Mohr <andi@lisas.de> Cc: Dmitry Torokhov <dtor@mail.ru> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
ded0cdfc6a
commit
ff27e1f303
@ -52,7 +52,7 @@
|
||||
*/
|
||||
#undef START_IN_KERNEL_MODE
|
||||
|
||||
#define DRV_VER "0.5.16"
|
||||
#define DRV_VER "0.5.17"
|
||||
|
||||
/*
|
||||
* According to the Atom N270 datasheet,
|
||||
@ -435,7 +435,7 @@ struct thermal_cooling_device_ops acerhdf_cooling_ops = {
|
||||
};
|
||||
|
||||
/* suspend / resume functionality */
|
||||
static int acerhdf_suspend(struct platform_device *dev, pm_message_t state)
|
||||
static int acerhdf_suspend(struct device *dev)
|
||||
{
|
||||
if (kernelmode)
|
||||
acerhdf_change_fanstate(ACERHDF_FAN_AUTO);
|
||||
@ -446,14 +446,6 @@ static int acerhdf_suspend(struct platform_device *dev, pm_message_t state)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int acerhdf_resume(struct platform_device *device)
|
||||
{
|
||||
if (verbose)
|
||||
pr_notice("resuming\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __devinit acerhdf_probe(struct platform_device *device)
|
||||
{
|
||||
return 0;
|
||||
@ -464,15 +456,19 @@ static int acerhdf_remove(struct platform_device *device)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct dev_pm_ops acerhdf_pm_ops = {
|
||||
.suspend = acerhdf_suspend,
|
||||
.freeze = acerhdf_suspend,
|
||||
};
|
||||
|
||||
static struct platform_driver acerhdf_driver = {
|
||||
.driver = {
|
||||
.name = "acerhdf",
|
||||
.name = "acerhdf",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &acerhdf_pm_ops,
|
||||
},
|
||||
.probe = acerhdf_probe,
|
||||
.remove = acerhdf_remove,
|
||||
.suspend = acerhdf_suspend,
|
||||
.resume = acerhdf_resume,
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user