diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2015-09-11 04:26:57 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-09-14 19:48:48 +0100 |
commit | 424fb281d6dff1c0fef2a402de3b3819b7a91a87 (patch) | |
tree | 1bf766b5986b1cc4f1601b8d4fea3953cb497e24 | |
parent | 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff) |
regulator: da9063: Remove unneeded semicolon
It's clearly a typo error that just creates a null statement so remove it.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/regulator/da9063-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/da9063-regulator.c b/drivers/regulator/da9063-regulator.c index aed1ad3dc964..536e931eb921 100644 --- a/drivers/regulator/da9063-regulator.c +++ b/drivers/regulator/da9063-regulator.c @@ -698,7 +698,7 @@ static struct da9063_regulators_pdata *da9063_parse_regulators_dt( rdata->initdata = da9063_matches[i].init_data; n++; - }; + } *da9063_reg_matches = da9063_matches; return pdata; |