aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mfd/tps65217.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/mfd/tps65217.h b/include/linux/mfd/tps65217.h
index 4e035a41a9b0..3a80da103f3f 100644
--- a/include/linux/mfd/tps65217.h
+++ b/include/linux/mfd/tps65217.h
@@ -227,8 +227,6 @@ struct tps65217_board {
227 * @max_uV: minimum micro volts 227 * @max_uV: minimum micro volts
228 * @vsel_to_uv: Function pointer to get voltage from selector 228 * @vsel_to_uv: Function pointer to get voltage from selector
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
231 * @table_len: Length of the voltage table
232 * 230 *
233 * This data is used to check the regualtor voltage limits while setting. 231 * This data is used to check the regualtor voltage limits while setting.
234 */ 232 */
@@ -238,8 +236,6 @@ struct tps_info {
238 int max_uV; 236 int max_uV;
239 int (*vsel_to_uv)(unsigned int vsel); 237 int (*vsel_to_uv)(unsigned int vsel);
240 int (*uv_to_vsel)(int uV, unsigned int *vsel); 238 int (*uv_to_vsel)(int uV, unsigned int *vsel);
241 const int *table;
242 unsigned int table_len;
243}; 239};
244 240
245/** 241/**