Commit ec879f12 authored by Mika Westerberg's avatar Mika Westerberg Committed by Linus Walleij

pinctrl: baytrail: Fix compilation warnings when !CONFIG_PM

When CONFIG_PM is not set we get following compilation warnings:

 warning: ‘byt_gpio_runtime_suspend†defined but not used [-Wunused-function]
 warning: ‘byt_gpio_runtime_resume†defined but not used [-Wunused-function]

Fix this by guarding byt_gpio_runtime_suspend()/byt_gpio_runtime_resume()
with #ifdef CONFIG_PM.
Signed-off-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent f487bbf3
...@@ -696,6 +696,7 @@ static int byt_gpio_resume(struct device *dev) ...@@ -696,6 +696,7 @@ static int byt_gpio_resume(struct device *dev)
} }
#endif #endif
#ifdef CONFIG_PM
static int byt_gpio_runtime_suspend(struct device *dev) static int byt_gpio_runtime_suspend(struct device *dev)
{ {
return 0; return 0;
...@@ -705,6 +706,7 @@ static int byt_gpio_runtime_resume(struct device *dev) ...@@ -705,6 +706,7 @@ static int byt_gpio_runtime_resume(struct device *dev)
{ {
return 0; return 0;
} }
#endif
static const struct dev_pm_ops byt_gpio_pm_ops = { static const struct dev_pm_ops byt_gpio_pm_ops = {
SET_LATE_SYSTEM_SLEEP_PM_OPS(byt_gpio_suspend, byt_gpio_resume) SET_LATE_SYSTEM_SLEEP_PM_OPS(byt_gpio_suspend, byt_gpio_resume)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment