aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mfd
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mfd')
-rw-r--r--include/linux/mfd/tps65217.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/mfd/tps65217.h b/include/linux/mfd/tps65217.h
index e030ef9a64ee..4e035a41a9b0 100644
--- a/include/linux/mfd/tps65217.h
+++ b/include/linux/mfd/tps65217.h
@@ -229,9 +229,6 @@ struct tps65217_board {
229 * @uv_to_vsel: Function pointer to get selector from voltage 229 * @uv_to_vsel: Function pointer to get selector from voltage
230 * @table: Table for non-uniform voltage step-size 230 * @table: Table for non-uniform voltage step-size
231 * @table_len: Length of the voltage table 231 * @table_len: Length of the voltage table
232 * @enable_mask: Regulator enable mask bits
233 * @set_vout_reg: Regulator output voltage set register
234 * @set_vout_mask: Regulator output voltage set mask
235 * 232 *
236 * This data is used to check the regualtor voltage limits while setting. 233 * This data is used to check the regualtor voltage limits while setting.
237 */ 234 */
@@ -243,9 +240,6 @@ struct tps_info {
243 int (*uv_to_vsel)(int uV, unsigned int *vsel); 240 int (*uv_to_vsel)(int uV, unsigned int *vsel);
244 const int *table; 241 const int *table;
245 unsigned int table_len; 242 unsigned int table_len;
246 unsigned int enable_mask;
247 unsigned int set_vout_reg;
248 unsigned int set_vout_mask;
249}; 243};
250 244
251/** 245/**