diff options
Diffstat (limited to 'include/linux/regulator/driver.h')
| -rw-r--r-- | include/linux/regulator/driver.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h index 7932a3bf21bd..d10bb0f39c5e 100644 --- a/include/linux/regulator/driver.h +++ b/include/linux/regulator/driver.h @@ -181,10 +181,13 @@ enum regulator_type {   * @type: Indicates if the regulator is a voltage or current regulator.   * @owner: Module providing the regulator, used for refcounting.   * + * @continuous_voltage_range: Indicates if the regulator can set any + *                            voltage within constrains range.   * @n_voltages: Number of selectors available for ops.list_voltage().   *   * @min_uV: Voltage given by the lowest selector (if linear mapping)   * @uV_step: Voltage increase with each selector (if linear mapping) + * @linear_min_sel: Minimal selector for starting linear mapping   * @ramp_delay: Time to settle down after voltage change (unit: uV/us)   * @volt_table: Voltage mapping table (if table based mapping)   * @@ -199,6 +202,7 @@ struct regulator_desc {  	const char *name;  	const char *supply_name;  	int id; +	bool continuous_voltage_range;  	unsigned n_voltages;  	struct regulator_ops *ops;  	int irq; @@ -207,6 +211,7 @@ struct regulator_desc {  	unsigned int min_uV;  	unsigned int uV_step; +	unsigned int linear_min_sel;  	unsigned int ramp_delay;  	const unsigned int *volt_table; |