|
@@ -134,6 +134,7 @@ static int asic3_led_remove(struct platform_device *pdev)
|
|
|
return mfd_cell_disable(pdev);
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_PM_SLEEP
|
|
|
static int asic3_led_suspend(struct device *dev)
|
|
|
{
|
|
|
struct platform_device *pdev = to_platform_device(dev);
|
|
@@ -159,11 +160,9 @@ static int asic3_led_resume(struct device *dev)
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
+#endif
|
|
|
|
|
|
-static const struct dev_pm_ops asic3_led_pm_ops = {
|
|
|
- .suspend = asic3_led_suspend,
|
|
|
- .resume = asic3_led_resume,
|
|
|
-};
|
|
|
+static SIMPLE_DEV_PM_OPS(asic3_led_pm_ops, asic3_led_suspend, asic3_led_resume);
|
|
|
|
|
|
static struct platform_driver asic3_led_driver = {
|
|
|
.probe = asic3_led_probe,
|