Commit 2d3867d0 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

hwrandom / exynos / PM: Use CONFIG_PM in #ifdef

CONFIG_PM is defined as the alternative of CONFIG_PM_RUNTIME and
CONFIG_PM_SLEEP, so it can be used instead of that.

Besides, after commit b2b49ccb (PM: Kconfig: Set PM_RUNTIME if
PM_SLEEP is selected) PM_RUNTIME is always set if PM is set, so
using the alternative isn't even necessary.

Use CONFIG_PM instead of it in drivers/char/hw_random/exynos-rng.c.
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 47fafbc7
...@@ -143,7 +143,7 @@ static int exynos_rng_remove(struct platform_device *pdev) ...@@ -143,7 +143,7 @@ static int exynos_rng_remove(struct platform_device *pdev)
return 0; return 0;
} }
#if defined(CONFIG_PM_SLEEP) || defined(CONFIG_PM_RUNTIME) #ifdef CONFIG_PM
static int exynos_rng_runtime_suspend(struct device *dev) static int exynos_rng_runtime_suspend(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct platform_device *pdev = to_platform_device(dev);
......
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