aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/regulator
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2013-10-24 06:11:36 -0400
committerMark Brown <broonie@linaro.org>2013-10-24 06:11:36 -0400
commit706664c290d69f890a9e3acfc6a8196098459826 (patch)
treea8b8e7bc7f9172a412363b1ceb9ea1a78587e077 /include/linux/regulator
parentb735e47f6e94f07911dcdf92837ebfd0ec1cf7c0 (diff)
parent609d5f6ddc18d05801646c869fcf4d0537b9110b (diff)
Merge remote-tracking branch 'regulator/topic/fixed' into regulator-next
Diffstat (limited to 'include/linux/regulator')
-rw-r--r--include/linux/regulator/driver.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h
index 779b877e0fa1..c8b492c6b6a8 100644
--- a/include/linux/regulator/driver.h
+++ b/include/linux/regulator/driver.h
@@ -209,6 +209,7 @@ enum regulator_type {
209 * @min_uV: Voltage given by the lowest selector (if linear mapping) 209 * @min_uV: Voltage given by the lowest selector (if linear mapping)
210 * @uV_step: Voltage increase with each selector (if linear mapping) 210 * @uV_step: Voltage increase with each selector (if linear mapping)
211 * @linear_min_sel: Minimal selector for starting linear mapping 211 * @linear_min_sel: Minimal selector for starting linear mapping
212 * @fixed_uV: Fixed voltage of rails.
212 * @ramp_delay: Time to settle down after voltage change (unit: uV/us) 213 * @ramp_delay: Time to settle down after voltage change (unit: uV/us)
213 * @volt_table: Voltage mapping table (if table based mapping) 214 * @volt_table: Voltage mapping table (if table based mapping)
214 * 215 *
@@ -241,6 +242,7 @@ struct regulator_desc {
241 unsigned int min_uV; 242 unsigned int min_uV;
242 unsigned int uV_step; 243 unsigned int uV_step;
243 unsigned int linear_min_sel; 244 unsigned int linear_min_sel;
245 int fixed_uV;
244 unsigned int ramp_delay; 246 unsigned int ramp_delay;
245 247
246 const struct regulator_linear_range *linear_ranges; 248 const struct regulator_linear_range *linear_ranges;