aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2010-11-29 10:57:48 -0500
committerLiam Girdwood <lrg@slimlogic.co.uk>2011-01-12 09:33:01 -0500
commit6220b87bfd60d77bf9b19e18aa093110b0f34d41 (patch)
treef67b60982be7a7f2adf82be05fecb9ad1d01c8d3 /drivers/regulator
parentf8c12fe329c8da9f50d8b2b1183eeaa4d587e747 (diff)
regulator: Remove duplicate consts from mc13873 driver voltage tables
They're not needed and sparse is verbosely upset about them. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/mc13783-regulator.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/drivers/regulator/mc13783-regulator.c b/drivers/regulator/mc13783-regulator.c
index 47ea99949798..e99917a63ed4 100644
--- a/drivers/regulator/mc13783-regulator.c
+++ b/drivers/regulator/mc13783-regulator.c
@@ -100,78 +100,78 @@ struct mc13783_regulator {
100}; 100};
101 101
102/* Voltage Values */ 102/* Voltage Values */
103static const int const mc13783_sw3_val[] = { 103static const int mc13783_sw3_val[] = {
104 5000000, 5000000, 5000000, 5500000, 104 5000000, 5000000, 5000000, 5500000,
105}; 105};
106 106
107static const int const mc13783_vaudio_val[] = { 107static const int mc13783_vaudio_val[] = {
108 2775000, 108 2775000,
109}; 109};
110 110
111static const int const mc13783_viohi_val[] = { 111static const int mc13783_viohi_val[] = {
112 2775000, 112 2775000,
113}; 113};
114 114
115static const int const mc13783_violo_val[] = { 115static const int mc13783_violo_val[] = {
116 1200000, 1300000, 1500000, 1800000, 116 1200000, 1300000, 1500000, 1800000,
117}; 117};
118 118
119static const int const mc13783_vdig_val[] = { 119static const int mc13783_vdig_val[] = {
120 1200000, 1300000, 1500000, 1800000, 120 1200000, 1300000, 1500000, 1800000,
121}; 121};
122 122
123static const int const mc13783_vgen_val[] = { 123static const int mc13783_vgen_val[] = {
124 1200000, 1300000, 1500000, 1800000, 124 1200000, 1300000, 1500000, 1800000,
125 1100000, 2000000, 2775000, 2400000, 125 1100000, 2000000, 2775000, 2400000,
126}; 126};
127 127
128static const int const mc13783_vrfdig_val[] = { 128static const int mc13783_vrfdig_val[] = {
129 1200000, 1500000, 1800000, 1875000, 129 1200000, 1500000, 1800000, 1875000,
130}; 130};
131 131
132static const int const mc13783_vrfref_val[] = { 132static const int mc13783_vrfref_val[] = {
133 2475000, 2600000, 2700000, 2775000, 133 2475000, 2600000, 2700000, 2775000,
134}; 134};
135 135
136static const int const mc13783_vrfcp_val[] = { 136static const int mc13783_vrfcp_val[] = {
137 2700000, 2775000, 137 2700000, 2775000,
138}; 138};
139 139
140static const int const mc13783_vsim_val[] = { 140static const int mc13783_vsim_val[] = {
141 1800000, 2900000, 3000000, 141 1800000, 2900000, 3000000,
142}; 142};
143 143
144static const int const mc13783_vesim_val[] = { 144static const int mc13783_vesim_val[] = {
145 1800000, 2900000, 145 1800000, 2900000,
146}; 146};
147 147
148static const int const mc13783_vcam_val[] = { 148static const int mc13783_vcam_val[] = {
149 1500000, 1800000, 2500000, 2550000, 149 1500000, 1800000, 2500000, 2550000,
150 2600000, 2750000, 2800000, 3000000, 150 2600000, 2750000, 2800000, 3000000,
151}; 151};
152 152
153static const int const mc13783_vrfbg_val[] = { 153static const int mc13783_vrfbg_val[] = {
154 1250000, 154 1250000,
155}; 155};
156 156
157static const int const mc13783_vvib_val[] = { 157static const int mc13783_vvib_val[] = {
158 1300000, 1800000, 2000000, 3000000, 158 1300000, 1800000, 2000000, 3000000,
159}; 159};
160 160
161static const int const mc13783_vmmc_val[] = { 161static const int mc13783_vmmc_val[] = {
162 1600000, 1800000, 2000000, 2600000, 162 1600000, 1800000, 2000000, 2600000,
163 2700000, 2800000, 2900000, 3000000, 163 2700000, 2800000, 2900000, 3000000,
164}; 164};
165 165
166static const int const mc13783_vrf_val[] = { 166static const int mc13783_vrf_val[] = {
167 1500000, 1875000, 2700000, 2775000, 167 1500000, 1875000, 2700000, 2775000,
168}; 168};
169 169
170static const int const mc13783_gpo_val[] = { 170static const int mc13783_gpo_val[] = {
171 3100000, 171 3100000,
172}; 172};
173 173
174static const int const mc13783_pwgtdrv_val[] = { 174static const int mc13783_pwgtdrv_val[] = {
175 5500000, 175 5500000,
176}; 176};
177 177