mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 10:36:45 +07:00
power: supply: generic-adc-battery: use SIMPLE_DEV_PM_OPS helper macro
Replace ifdefs with SIMPLE_DEV_PM_OPS helper macro. Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
This commit is contained in:
parent
bb8fe8ea00
commit
756e142a4b
@ -383,8 +383,7 @@ static int gab_remove(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
static int gab_suspend(struct device *dev)
|
||||
static int __maybe_unused gab_suspend(struct device *dev)
|
||||
{
|
||||
struct gab *adc_bat = dev_get_drvdata(dev);
|
||||
|
||||
@ -393,7 +392,7 @@ static int gab_suspend(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int gab_resume(struct device *dev)
|
||||
static int __maybe_unused gab_resume(struct device *dev)
|
||||
{
|
||||
struct gab *adc_bat = dev_get_drvdata(dev);
|
||||
struct gab_platform_data *pdata = adc_bat->pdata;
|
||||
@ -407,20 +406,12 @@ static int gab_resume(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct dev_pm_ops gab_pm_ops = {
|
||||
.suspend = gab_suspend,
|
||||
.resume = gab_resume,
|
||||
};
|
||||
|
||||
#define GAB_PM_OPS (&gab_pm_ops)
|
||||
#else
|
||||
#define GAB_PM_OPS (NULL)
|
||||
#endif
|
||||
static SIMPLE_DEV_PM_OPS(gab_pm_ops, gab_suspend, gab_resume);
|
||||
|
||||
static struct platform_driver gab_driver = {
|
||||
.driver = {
|
||||
.name = "generic-adc-battery",
|
||||
.pm = GAB_PM_OPS
|
||||
.pm = &gab_pm_ops,
|
||||
},
|
||||
.probe = gab_probe,
|
||||
.remove = gab_remove,
|
||||
|
Loading…
Reference in New Issue
Block a user