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>
This commit is contained in:
Krzysztof Kozlowski 2015-04-23 21:24:32 +09:00 committed by Mark Brown
parent b787f68c36
commit 7cf225b98a
2 changed files with 6 additions and 6 deletions

View file

@ -108,7 +108,7 @@ static void of_get_regulation_constraints(struct device_node *np,
case PM_SUSPEND_STANDBY: case PM_SUSPEND_STANDBY:
default: default:
continue; continue;
}; }
suspend_np = of_get_child_by_name(np, regulator_states[i]); suspend_np = of_get_child_by_name(np, regulator_states[i]);
if (!suspend_np || !suspend_state) if (!suspend_np || !suspend_state)

View file

@ -515,7 +515,7 @@ static int s2mps14_regulator_enable(struct regulator_dev *rdev)
break; break;
default: default:
return -EINVAL; return -EINVAL;
}; }
return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg, return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
rdev->desc->enable_mask, val); rdev->desc->enable_mask, val);
@ -538,7 +538,7 @@ static int s2mps14_regulator_set_suspend_disable(struct regulator_dev *rdev)
default: default:
state = S2MPS14_ENABLE_SUSPEND; state = S2MPS14_ENABLE_SUSPEND;
break; break;
}; }
break; break;
case S2MPU02: case S2MPU02:
switch (rdev_id) { switch (rdev_id) {
@ -552,11 +552,11 @@ static int s2mps14_regulator_set_suspend_disable(struct regulator_dev *rdev)
default: default:
state = S2MPU02_ENABLE_SUSPEND; state = S2MPU02_ENABLE_SUSPEND;
break; break;
}; }
break; break;
default: default:
return -EINVAL; return -EINVAL;
}; }
ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val); ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val);
if (ret < 0) if (ret < 0)
@ -977,7 +977,7 @@ static int s2mps11_pmic_probe(struct platform_device *pdev)
dev_err(&pdev->dev, "Invalid device type: %u\n", dev_err(&pdev->dev, "Invalid device type: %u\n",
s2mps11->dev_type); s2mps11->dev_type);
return -EINVAL; return -EINVAL;
}; }
s2mps11->ext_control_gpio = devm_kmalloc(&pdev->dev, s2mps11->ext_control_gpio = devm_kmalloc(&pdev->dev,
sizeof(*s2mps11->ext_control_gpio) * s2mps11->rdev_num, sizeof(*s2mps11->ext_control_gpio) * s2mps11->rdev_num,