Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1576874

[PATCH] PM / Domains: Provide dummy governors if CONFIG_PM_GENERIC_DOMAINS=n

From Geert Uytterhoeven <geert+renesas@glider.be>
Newsgroups linux.kernel
Subject [PATCH] PM / Domains: Provide dummy governors if CONFIG_PM_GENERIC_DOMAINS=n
Date 2017-02-08 20:00 +0100
Message-ID <t8FDd-3VT-45@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


This allows to compile-test drivers that refer to governors (always by
reference) when CONFIG_PM_GENERIC_DOMAINS=n.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 include/linux/pm_domain.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h
index 81ece61075dff0e7..5339ed5bd6f9d04a 100644
--- a/include/linux/pm_domain.h
+++ b/include/linux/pm_domain.h
@@ -182,6 +182,9 @@ static inline int pm_genpd_remove(struct generic_pm_domain *genpd)
 {
 	return -ENOTSUPP;
 }
+
+#define simple_qos_governor		(*(struct dev_power_governor *)(NULL))
+#define pm_domain_always_on_gov		(*(struct dev_power_governor *)(NULL))
 #endif
 
 static inline int pm_genpd_add_device(struct generic_pm_domain *genpd,
-- 
1.9.1

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] PM / Domains: Provide dummy governors if CONFIG_PM_GENERIC_DOMAINS=n Geert Uytterhoeven <geert+renesas@glider.be> - 2017-02-08 20:00 +0100
  Re: [PATCH] PM / Domains: Provide dummy governors if CONFIG_PM_GENERIC_DOMAINS=n Ulf Hansson <ulf.hansson@linaro.org> - 2017-02-09 11:50 +0100

csiph-web