summaryrefslogtreecommitdiffstats
path: root/drivers/regulator/of_regulator.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski2015-04-23 14:24:32 +0200
committerMark Brown2015-04-27 22:35:20 +0200
commit7cf225b98a7b899323edeb3ef709da880fa88481 (patch)
treedc5a46660851fdc84006339066b900d984b41319 /drivers/regulator/of_regulator.c
parentLinux 4.1-rc1 (diff)
downloadkernel-qcow2-linux-7cf225b98a7b899323edeb3ef709da880fa88481.tar.gz
kernel-qcow2-linux-7cf225b98a7b899323edeb3ef709da880fa88481.tar.xz
kernel-qcow2-linux-7cf225b98a7b899323edeb3ef709da880fa88481.zip
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c
index 24e812c48d93..e952439e0d83 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)