summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTero Kristo <t-kristo@ti.com>2014-08-26 11:13:33 +0530
committerTero Kristo <t-kristo@ti.com>2014-09-01 10:55:12 +0300
commit36ceec49fa7fc22afdc2853e41bea8ff9fbd5f9d (patch)
tree90fc7e4a2c9c9ad95c5b5011f0fb08d0e9960e5d /include
parentca1670e5d34591c4683b3f89d1f28fb43d712a6d (diff)
regulator: tps65218: Enable suspend configuration
This allows platform data to specify which power rails should be on or off during RTC only suspend. This is necessary to keep DDR state while in RTC only suspend. Signed-off-by: Tero Kristo <t-kristo@ti.com> [j-keerthy@ti.com] ported to 3.14 with minor fixes Signed-off-by: Keerthy <j-keerthy@ti.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mfd/tps65218.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mfd/tps65218.h b/include/linux/mfd/tps65218.h
index 2f9b593246e..2012b5e468f 100644
--- a/include/linux/mfd/tps65218.h
+++ b/include/linux/mfd/tps65218.h
@@ -241,6 +241,7 @@ enum tps65218_irqs {
* @name: Voltage regulator name
* @min_uV: minimum micro volts
* @max_uV: minimum micro volts
+ * @strobe: sequencing strobe value for the regulator
*
* This data is used to check the regualtor voltage limits while setting.
*/
@@ -249,6 +250,7 @@ struct tps_info {
const char *name;
int min_uV;
int max_uV;
+ int strobe;
};
/**