diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-07-06 07:15:27 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-07-12 13:22:13 -0400 |
commit | 257ee3c6dde02c2c93334f802a8fc34825c75369 (patch) | |
tree | 21b8b7a3990abb4e3950b995c03bc8f4a55bdf5e /drivers/regulator | |
parent | 4506c6d5ea5dddab562fd06398fd9b8d1681bbd0 (diff) |
regulator: aat2870: Remove unused min_uV and max_uV from struct aat2870_regulator
Both min_uV and max_uV are not used in the code, remove them.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/aat2870-regulator.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/regulator/aat2870-regulator.c b/drivers/regulator/aat2870-regulator.c index 6644e83076b4..6f45bfd22e83 100644 --- a/drivers/regulator/aat2870-regulator.c +++ b/drivers/regulator/aat2870-regulator.c | |||
@@ -33,9 +33,6 @@ struct aat2870_regulator { | |||
33 | struct aat2870_data *aat2870; | 33 | struct aat2870_data *aat2870; |
34 | struct regulator_desc desc; | 34 | struct regulator_desc desc; |
35 | 35 | ||
36 | int min_uV; | ||
37 | int max_uV; | ||
38 | |||
39 | u8 enable_addr; | 36 | u8 enable_addr; |
40 | u8 enable_shift; | 37 | u8 enable_shift; |
41 | u8 enable_mask; | 38 | u8 enable_mask; |
@@ -127,8 +124,6 @@ static const unsigned int aat2870_ldo_voltages[] = { | |||
127 | .type = REGULATOR_VOLTAGE, \ | 124 | .type = REGULATOR_VOLTAGE, \ |
128 | .owner = THIS_MODULE, \ | 125 | .owner = THIS_MODULE, \ |
129 | }, \ | 126 | }, \ |
130 | .min_uV = 1200000, \ | ||
131 | .max_uV = 3300000, \ | ||
132 | } | 127 | } |
133 | 128 | ||
134 | static struct aat2870_regulator aat2870_regulators[] = { | 129 | static struct aat2870_regulator aat2870_regulators[] = { |