diff options
author | Fengguang Wu <fengguang.wu@intel.com> | 2014-08-29 13:41:59 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-08-29 13:42:12 +0200 |
commit | c2a946e07f9776ba5a73c37087c02e0e1830b5ce (patch) | |
tree | 27d4d3edb6ba22fedf687f011a43311dc501b93b /drivers/regulator/da9211-regulator.c | |
parent | regulator: da9211: support device tree (diff) | |
download | linux-c2a946e07f9776ba5a73c37087c02e0e1830b5ce.tar.xz linux-c2a946e07f9776ba5a73c37087c02e0e1830b5ce.zip |
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 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; } |