From: Axel Lin Date: Fri, 29 Mar 2019 01:46:31 +0000 (+0800) Subject: regulator: vctrl: Remove unneeded continue statement X-Git-Tag: v5.2-rc1~174^2^2~65 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9e488c0a59cbb8353962dae974b77361920c1777;p=uclinux-h8%2Flinux.git regulator: vctrl: Remove unneeded continue statement Signed-off-by: Axel Lin Reviewed-by: Mukesh Ojha Reviewed-by: Matthias Kaehlcke Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/vctrl-regulator.c b/drivers/regulator/vctrl-regulator.c index 78de002037c7..259864520a06 100644 --- a/drivers/regulator/vctrl-regulator.c +++ b/drivers/regulator/vctrl-regulator.c @@ -334,10 +334,8 @@ static int vctrl_init_vtable(struct platform_device *pdev) ctrl_uV = regulator_list_voltage(ctrl_reg, i); if (ctrl_uV < vrange_ctrl->min_uV || - ctrl_uV > vrange_ctrl->max_uV) { + ctrl_uV > vrange_ctrl->max_uV) rdesc->n_voltages--; - continue; - } } if (rdesc->n_voltages == 0) {