diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-09-10 00:07:23 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-09-10 03:34:36 -0400 |
commit | e4c5288e410440abcc3e2e1887111b09a98304d5 (patch) | |
tree | bba431471c2b63db77b903027a906abd6281e942 | |
parent | 49d8c59927e7887ea168a040e41c22937e10c30b (diff) |
regulator: aat2870: Don't explicitly initialise the first field
Doing so generates a warning as the first field is a pointer but we use
0 to initalize it.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | drivers/regulator/aat2870-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/aat2870-regulator.c b/drivers/regulator/aat2870-regulator.c index 6f45bfd22e83..167c93f21981 100644 --- a/drivers/regulator/aat2870-regulator.c +++ b/drivers/regulator/aat2870-regulator.c | |||
@@ -162,7 +162,7 @@ static struct aat2870_regulator *aat2870_get_regulator(int id) | |||
162 | static int aat2870_regulator_probe(struct platform_device *pdev) | 162 | static int aat2870_regulator_probe(struct platform_device *pdev) |
163 | { | 163 | { |
164 | struct aat2870_regulator *ri; | 164 | struct aat2870_regulator *ri; |
165 | struct regulator_config config = { 0 }; | 165 | struct regulator_config config = { }; |
166 | struct regulator_dev *rdev; | 166 | struct regulator_dev *rdev; |
167 | 167 | ||
168 | ri = aat2870_get_regulator(pdev->id); | 168 | ri = aat2870_get_regulator(pdev->id); |