aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/pm_domain.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h
index e3ff87550eeb..e76cc9ae8233 100644
--- a/include/linux/pm_domain.h
+++ b/include/linux/pm_domain.h
@@ -101,12 +101,12 @@ struct generic_pm_domain_data {
101 bool need_restore; 101 bool need_restore;
102}; 102};
103 103
104#ifdef CONFIG_PM_GENERIC_DOMAINS
104static inline struct generic_pm_domain_data *to_gpd_data(struct pm_domain_data *pdd) 105static inline struct generic_pm_domain_data *to_gpd_data(struct pm_domain_data *pdd)
105{ 106{
106 return container_of(pdd, struct generic_pm_domain_data, base); 107 return container_of(pdd, struct generic_pm_domain_data, base);
107} 108}
108 109
109#ifdef CONFIG_PM_GENERIC_DOMAINS
110static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev) 110static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
111{ 111{
112 return to_gpd_data(dev->power.subsys_data->domain_data); 112 return to_gpd_data(dev->power.subsys_data->domain_data);
@@ -207,6 +207,10 @@ static inline bool default_stop_ok(struct device *dev)
207 return false; 207 return false;
208} 208}
209#define pm_domain_always_on_gov NULL 209#define pm_domain_always_on_gov NULL
210static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
211{
212 return NULL;
213}
210#endif 214#endif
211 215
212static inline int pm_genpd_remove_callbacks(struct device *dev) 216static inline int pm_genpd_remove_callbacks(struct device *dev)