diff options
author | Fengguang Wu <fengguang.wu@intel.com> | 2014-08-29 12:41:59 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-08-29 12:42:12 +0100 |
commit | c2a946e07f9776ba5a73c37087c02e0e1830b5ce (patch) | |
tree | 27d4d3edb6ba22fedf687f011a43311dc501b93b /drivers/regulator/da9211-regulator.c | |
parent | bf3baca6c54ce8a2f51687296f868dfe20d33f13 (diff) | |
download | op-kernel-dev-c2a946e07f9776ba5a73c37087c02e0e1830b5ce.zip op-kernel-dev-c2a946e07f9776ba5a73c37087c02e0e1830b5ce.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/da9211-regulator.c b/drivers/regulator/da9211-regulator.c index 5aabbac..9722728 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; } |