diff options
author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-04-23 21:24:32 +0900 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-04-27 21:35:20 +0100 |
commit | 7cf225b98a7b899323edeb3ef709da880fa88481 (patch) | |
tree | dc5a46660851fdc84006339066b900d984b41319 /drivers/regulator/of_regulator.c | |
parent | b787f68c36d49bb1d9236f403813641efa74a031 (diff) | |
download | op-kernel-dev-7cf225b98a7b899323edeb3ef709da880fa88481.zip op-kernel-dev-7cf225b98a7b899323edeb3ef709da880fa88481.tar.gz |
regulator: Remove unneeded semicolons
Remove unneeded semicolons after the switch statement to satisfy
coccicheck.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/of_regulator.c')
-rw-r--r-- | drivers/regulator/of_regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c index 24e812c..e952439 100644 --- a/drivers/regulator/of_regulator.c +++ b/drivers/regulator/of_regulator.c @@ -108,7 +108,7 @@ static void of_get_regulation_constraints(struct device_node *np, case PM_SUSPEND_STANDBY: default: continue; - }; + } suspend_np = of_get_child_by_name(np, regulator_states[i]); if (!suspend_np || !suspend_state) |