diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-09-10 04:07:23 (GMT) |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-09-10 07:34:36 (GMT) |
commit | e4c5288e410440abcc3e2e1887111b09a98304d5 (patch) | |
tree | bba431471c2b63db77b903027a906abd6281e942 /drivers/regulator/aat2870-regulator.c | |
parent | 49d8c59927e7887ea168a040e41c22937e10c30b (diff) | |
download | linux-e4c5288e410440abcc3e2e1887111b09a98304d5.tar.xz |
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>
Diffstat (limited to 'drivers/regulator/aat2870-regulator.c')
-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 6f45bfd..167c93f 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) static int aat2870_regulator_probe(struct platform_device *pdev) { struct aat2870_regulator *ri; - struct regulator_config config = { 0 }; + struct regulator_config config = { }; struct regulator_dev *rdev; ri = aat2870_get_regulator(pdev->id); |