diff options
author | Mark Brown <broonie@linaro.org> | 2014-09-07 11:22:01 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-09-09 18:22:19 -0400 |
commit | c2542d2a867c22540c8ad64883288eabb891568d (patch) | |
tree | d032542e82b2d2e6e13c41d68233e4b7bf772add /drivers/regulator/tps65217-regulator.c | |
parent | 81baf9fe0243a4450d738676ccf99d325460c748 (diff) |
regulator: tps65217: Remove unused driver_data from of_match table
We don't ever reference the driver_data we supply so remove it.
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/tps65217-regulator.c')
-rw-r--r-- | drivers/regulator/tps65217-regulator.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/regulator/tps65217-regulator.c b/drivers/regulator/tps65217-regulator.c index 1cf16aed9735..42315468ec68 100644 --- a/drivers/regulator/tps65217-regulator.c +++ b/drivers/regulator/tps65217-regulator.c | |||
@@ -171,13 +171,13 @@ static const struct regulator_desc regulators[] = { | |||
171 | 171 | ||
172 | #ifdef CONFIG_OF | 172 | #ifdef CONFIG_OF |
173 | static struct of_regulator_match reg_matches[] = { | 173 | static struct of_regulator_match reg_matches[] = { |
174 | { .name = "dcdc1", .driver_data = (void *)TPS65217_DCDC_1 }, | 174 | { .name = "dcdc1" }, |
175 | { .name = "dcdc2", .driver_data = (void *)TPS65217_DCDC_2 }, | 175 | { .name = "dcdc2" }, |
176 | { .name = "dcdc3", .driver_data = (void *)TPS65217_DCDC_3 }, | 176 | { .name = "dcdc3" }, |
177 | { .name = "ldo1", .driver_data = (void *)TPS65217_LDO_1 }, | 177 | { .name = "ldo1" }, |
178 | { .name = "ldo2", .driver_data = (void *)TPS65217_LDO_2 }, | 178 | { .name = "ldo2" }, |
179 | { .name = "ldo3", .driver_data = (void *)TPS65217_LDO_3 }, | 179 | { .name = "ldo3" }, |
180 | { .name = "ldo4", .driver_data = (void *)TPS65217_LDO_4 }, | 180 | { .name = "ldo4" }, |
181 | }; | 181 | }; |
182 | 182 | ||
183 | static struct tps65217_board *tps65217_parse_dt(struct platform_device *pdev) | 183 | static struct tps65217_board *tps65217_parse_dt(struct platform_device *pdev) |