diff options
-rw-r--r-- | drivers/regulator/tps6507x-regulator.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/regulator/tps6507x-regulator.c b/drivers/regulator/tps6507x-regulator.c index c771e1077cc1..eed6678c2906 100644 --- a/drivers/regulator/tps6507x-regulator.c +++ b/drivers/regulator/tps6507x-regulator.c | |||
@@ -91,8 +91,6 @@ static const unsigned int LDO2_VSEL_table[] = { | |||
91 | 91 | ||
92 | struct tps_info { | 92 | struct tps_info { |
93 | const char *name; | 93 | const char *name; |
94 | unsigned min_uV; | ||
95 | unsigned max_uV; | ||
96 | u8 table_len; | 94 | u8 table_len; |
97 | const unsigned int *table; | 95 | const unsigned int *table; |
98 | 96 | ||
@@ -103,36 +101,26 @@ struct tps_info { | |||
103 | static struct tps_info tps6507x_pmic_regs[] = { | 101 | static struct tps_info tps6507x_pmic_regs[] = { |
104 | { | 102 | { |
105 | .name = "VDCDC1", | 103 | .name = "VDCDC1", |
106 | .min_uV = 725000, | ||
107 | .max_uV = 3300000, | ||
108 | .table_len = ARRAY_SIZE(VDCDCx_VSEL_table), | 104 | .table_len = ARRAY_SIZE(VDCDCx_VSEL_table), |
109 | .table = VDCDCx_VSEL_table, | 105 | .table = VDCDCx_VSEL_table, |
110 | }, | 106 | }, |
111 | { | 107 | { |
112 | .name = "VDCDC2", | 108 | .name = "VDCDC2", |
113 | .min_uV = 725000, | ||
114 | .max_uV = 3300000, | ||
115 | .table_len = ARRAY_SIZE(VDCDCx_VSEL_table), | 109 | .table_len = ARRAY_SIZE(VDCDCx_VSEL_table), |
116 | .table = VDCDCx_VSEL_table, | 110 | .table = VDCDCx_VSEL_table, |
117 | }, | 111 | }, |
118 | { | 112 | { |
119 | .name = "VDCDC3", | 113 | .name = "VDCDC3", |
120 | .min_uV = 725000, | ||
121 | .max_uV = 3300000, | ||
122 | .table_len = ARRAY_SIZE(VDCDCx_VSEL_table), | 114 | .table_len = ARRAY_SIZE(VDCDCx_VSEL_table), |
123 | .table = VDCDCx_VSEL_table, | 115 | .table = VDCDCx_VSEL_table, |
124 | }, | 116 | }, |
125 | { | 117 | { |
126 | .name = "LDO1", | 118 | .name = "LDO1", |
127 | .min_uV = 1000000, | ||
128 | .max_uV = 3300000, | ||
129 | .table_len = ARRAY_SIZE(LDO1_VSEL_table), | 119 | .table_len = ARRAY_SIZE(LDO1_VSEL_table), |
130 | .table = LDO1_VSEL_table, | 120 | .table = LDO1_VSEL_table, |
131 | }, | 121 | }, |
132 | { | 122 | { |
133 | .name = "LDO2", | 123 | .name = "LDO2", |
134 | .min_uV = 725000, | ||
135 | .max_uV = 3300000, | ||
136 | .table_len = ARRAY_SIZE(LDO2_VSEL_table), | 124 | .table_len = ARRAY_SIZE(LDO2_VSEL_table), |
137 | .table = LDO2_VSEL_table, | 125 | .table = LDO2_VSEL_table, |
138 | }, | 126 | }, |