aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/pm_domain.h
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2012-07-05 16:12:32 -0400
committerRafael J. Wysocki <rjw@sisk.pl>2012-07-05 16:12:32 -0400
commit1d5fcfec22ce5f69db0d29284d2b65ff8ab1bfaa (patch)
tree907136239832a60a2f7af6e6dd442fdc3ac0f034 /include/linux/pm_domain.h
parentcbc9ef0287ab764d3da0129efa673808df641fe3 (diff)
PM / Domains: Add device domain data reference counter
Add a mechanism for counting references to the struct generic_pm_domain_data object pointed to by dev->power.subsys_data->domain_data if the device in question belongs to a generic PM domain. This change is necessary for a subsequent patch making it possible to allocate that object from within pm_genpd_add_callbacks(), so that drivers can attach their PM domain device callbacks to devices before those devices are added to PM domains. This patch has been tested on the SH7372 Mackerel board. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'include/linux/pm_domain.h')
-rw-r--r--include/linux/pm_domain.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h
index 2febe31d2675..a7d6172922d4 100644
--- a/include/linux/pm_domain.h
+++ b/include/linux/pm_domain.h
@@ -112,6 +112,7 @@ struct generic_pm_domain_data {
112 struct gpd_timing_data td; 112 struct gpd_timing_data td;
113 struct notifier_block nb; 113 struct notifier_block nb;
114 struct mutex lock; 114 struct mutex lock;
115 unsigned int refcount;
115 bool need_restore; 116 bool need_restore;
116 bool always_on; 117 bool always_on;
117}; 118};