summaryrefslogtreecommitdiff
path: root/drivers/regulator/da9211-regulator.c
diff options
context:
space:
mode:
authorFengguang Wu <fengguang.wu@intel.com>2014-08-29 12:41:59 +0100
committerMark Brown <broonie@kernel.org>2014-08-29 12:42:12 +0100
commitc2a946e07f9776ba5a73c37087c02e0e1830b5ce (patch)
tree27d4d3edb6ba22fedf687f011a43311dc501b93b /drivers/regulator/da9211-regulator.c
parentbf3baca6c54ce8a2f51687296f868dfe20d33f13 (diff)
regulator: da9211: fix coccinelle warnings
drivers/regulator/da9211-regulator.c:281:2-3: Unneeded semicolon Removes unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/da9211-regulator.c')
-rw-r--r--drivers/regulator/da9211-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/da9211-regulator.c b/drivers/regulator/da9211-regulator.c
index 5aabbac1b524..9722728b954a 100644
--- a/drivers/regulator/da9211-regulator.c
+++ b/drivers/regulator/da9211-regulator.c
@@ -278,7 +278,7 @@ static struct da9211_pdata *da9211_parse_regulators_dt(
pdata->init_data[n] = da9211_matches[i].init_data;
n++;
- };
+ }
return pdata;
}