diff options
author | 2021-01-27 16:42:05 +0800 | |
---|---|---|
committer | 2021-02-01 15:04:21 +0100 | |
commit | 6dc466d34f51767ad34fb900de8d278a66a3f1ed (patch) | |
tree | e980ff06e28aa5d79dd9571eb53f707883aec26c | |
parent | PM: domains: Add "performance" column to debug summary (diff) | |
download | linux-dev-6dc466d34f51767ad34fb900de8d278a66a3f1ed.tar.xz linux-dev-6dc466d34f51767ad34fb900de8d278a66a3f1ed.zip |
PM: domains: Simplify the calculation of variables
Fix the following coccicheck warnings:
./drivers/base/power/domain.c:938:31-33: WARNING !A || A && B is
equivalent to !A || B.
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Suggested-by: Jiapeng Zhong <oswb@linux.alibaba.com>
Signed-off-by: Abaci Team <abaci-bugfix@linux.alibaba.com>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/base/power/domain.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c index 50211a402fa5..aaf6c83b5cf6 100644 --- a/drivers/base/power/domain.c +++ b/drivers/base/power/domain.c @@ -966,8 +966,7 @@ static int genpd_runtime_resume(struct device *dev) err_stop: genpd_stop_dev(genpd, dev); err_poweroff: - if (!pm_runtime_is_irq_safe(dev) || - (pm_runtime_is_irq_safe(dev) && genpd_is_irq_safe(genpd))) { + if (!pm_runtime_is_irq_safe(dev) || genpd_is_irq_safe(genpd)) { genpd_lock(genpd); genpd_power_off(genpd, true, 0); genpd_unlock(genpd); |