aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/pm_domain.h
diff options
context:
space:
mode:
authorDave Gerlach <d-gerlach@ti.com>2017-04-04 08:51:29 -0700
committerSantosh Shilimkar <ssantosh@kernel.org>2017-04-04 08:51:29 -0700
commita5ea7a0fcbd7376b2c9fcb15fe59fec298c9ce9f (patch)
tree088ee4c3982e880d13c82811e03174d742a0fca5 /include/linux/pm_domain.h
parentLinux 4.11-rc2 (diff)
downloadlinux-dev-a5ea7a0fcbd7376b2c9fcb15fe59fec298c9ce9f.tar.xz
linux-dev-a5ea7a0fcbd7376b2c9fcb15fe59fec298c9ce9f.zip
PM / Domains: Add generic data pointer to genpd data struct
Add a void *data pointer to struct generic_pm_domain_data. Because this exists for each device associated with a genpd it will allow us to assign per-device data if needed on a platform for control of that specific device. Acked-by: Ulf Hansson <ulf.hansson@linaro.org> Acked-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Dave Gerlach <d-gerlach@ti.com> Signed-off-by: Santosh Shilimkar <ssantosh@kernel.org>
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 5339ed5bd6f9..b213d22daefd 100644
--- a/include/linux/pm_domain.h
+++ b/include/linux/pm_domain.h
@@ -117,6 +117,7 @@ struct generic_pm_domain_data {
struct pm_domain_data base;
struct gpd_timing_data td;
struct notifier_block nb;
+ void *data;
};
#ifdef CONFIG_PM_GENERIC_DOMAINS