summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorUlf Hansson <ulf.hansson@linaro.org>2014-09-03 12:52:19 +0200
committerRobin Gong <b38343@freescale.com>2015-02-11 13:07:30 +0800
commit04ba852aedbe69892b120d6655f6e2fa788f932b (patch)
tree90c4402c9138b147ee840ac7db162957d74b9878 /include
parent847392d4cd9a1fad50d40068311a4eabe3f7f43a (diff)
PM / domains: Remove system PM callbacks from gpd_dev_ops
There no users of these callbacks, let's simplify the generic power domain by removing them. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Reviewed-by: Kevin Hilman <khilman@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> (cherry picked from commit 1e0407ca54d28db8e5f02e437ff21cc6416c0be8) (cherry picked from commit 0f19454e606c6fbc7ce980ca128a703ebc8990fb)
Diffstat (limited to 'include')
-rw-r--r--include/linux/pm_domain.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h
index a54bbbede74c..fd5efc830e6b 100644
--- a/include/linux/pm_domain.h
+++ b/include/linux/pm_domain.h
@@ -35,14 +35,6 @@ struct gpd_dev_ops {
int (*stop)(struct device *dev);
int (*save_state)(struct device *dev);
int (*restore_state)(struct device *dev);
- int (*suspend)(struct device *dev);
- int (*suspend_late)(struct device *dev);
- int (*resume_early)(struct device *dev);
- int (*resume)(struct device *dev);
- int (*freeze)(struct device *dev);
- int (*freeze_late)(struct device *dev);
- int (*thaw_early)(struct device *dev);
- int (*thaw)(struct device *dev);
bool (*active_wakeup)(struct device *dev);
};