In irq_safe_dev_in_sleep_domain() we correctly skip the dev_warn_once() if
the corresponding genpd for the device, has the GENPD_FLAG_ALWAYS_ON flag
being set. For the same reason (the genpd is always-on in runtime), let's
also skip the warning if the GENPD_FLAG_RPM_ALWAYS_ON flag is set for the
genpd.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
         * callbacks are allowed to sleep. This indicates a suboptimal
         * configuration for PM, but it doesn't matter for an always on domain.
         */
-       if (ret && !genpd_is_always_on(genpd))
+       if (genpd_is_always_on(genpd) || genpd_is_rpm_always_on(genpd))
+               return ret;
+
+       if (ret)
                dev_warn_once(dev, "PM domain %s will not be powered off\n",
                                genpd->name);