Commit 58a5e29c authored by Xu Wang's avatar Xu Wang Committed by Jonathan Cameron

iio: adc: stm32-adc: Remove redundant null check before clk_prepare_enable/clk_disable_unprepare

Because clk_prepare_enable() and clk_disable_unprepare() already checked
NULL clock parameter, so the additional checks are unnecessary, just
remove them.
Signed-off-by: default avatarXu Wang <vulab@iscas.ac.cn>
Acked-by: default avatarFabrice Gasnier <fabrice.gasnier@foss.st.com>
Link: https://lore.kernel.org/r/20201218093512.871-1-vulab@iscas.ac.cnSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 07fe995f
...@@ -535,20 +535,16 @@ static int stm32_adc_core_hw_start(struct device *dev) ...@@ -535,20 +535,16 @@ static int stm32_adc_core_hw_start(struct device *dev)
goto err_switches_dis; goto err_switches_dis;
} }
if (priv->bclk) { ret = clk_prepare_enable(priv->bclk);
ret = clk_prepare_enable(priv->bclk); if (ret < 0) {
if (ret < 0) { dev_err(dev, "bus clk enable failed\n");
dev_err(dev, "bus clk enable failed\n"); goto err_regulator_disable;
goto err_regulator_disable;
}
} }
if (priv->aclk) { ret = clk_prepare_enable(priv->aclk);
ret = clk_prepare_enable(priv->aclk); if (ret < 0) {
if (ret < 0) { dev_err(dev, "adc clk enable failed\n");
dev_err(dev, "adc clk enable failed\n"); goto err_bclk_disable;
goto err_bclk_disable;
}
} }
writel_relaxed(priv->ccr_bak, priv->common.base + priv->cfg->regs->ccr); writel_relaxed(priv->ccr_bak, priv->common.base + priv->cfg->regs->ccr);
...@@ -556,8 +552,7 @@ static int stm32_adc_core_hw_start(struct device *dev) ...@@ -556,8 +552,7 @@ static int stm32_adc_core_hw_start(struct device *dev)
return 0; return 0;
err_bclk_disable: err_bclk_disable:
if (priv->bclk) clk_disable_unprepare(priv->bclk);
clk_disable_unprepare(priv->bclk);
err_regulator_disable: err_regulator_disable:
regulator_disable(priv->vref); regulator_disable(priv->vref);
err_switches_dis: err_switches_dis:
...@@ -575,10 +570,8 @@ static void stm32_adc_core_hw_stop(struct device *dev) ...@@ -575,10 +570,8 @@ static void stm32_adc_core_hw_stop(struct device *dev)
/* Backup CCR that may be lost (depends on power state to achieve) */ /* Backup CCR that may be lost (depends on power state to achieve) */
priv->ccr_bak = readl_relaxed(priv->common.base + priv->cfg->regs->ccr); priv->ccr_bak = readl_relaxed(priv->common.base + priv->cfg->regs->ccr);
if (priv->aclk) clk_disable_unprepare(priv->aclk);
clk_disable_unprepare(priv->aclk); clk_disable_unprepare(priv->bclk);
if (priv->bclk)
clk_disable_unprepare(priv->bclk);
regulator_disable(priv->vref); regulator_disable(priv->vref);
stm32_adc_core_switches_supply_dis(priv); stm32_adc_core_switches_supply_dis(priv);
regulator_disable(priv->vdda); regulator_disable(priv->vdda);
......
...@@ -546,8 +546,7 @@ static int stm32_adc_hw_stop(struct device *dev) ...@@ -546,8 +546,7 @@ static int stm32_adc_hw_stop(struct device *dev)
if (adc->cfg->unprepare) if (adc->cfg->unprepare)
adc->cfg->unprepare(indio_dev); adc->cfg->unprepare(indio_dev);
if (adc->clk) clk_disable_unprepare(adc->clk);
clk_disable_unprepare(adc->clk);
return 0; return 0;
} }
...@@ -558,11 +557,9 @@ static int stm32_adc_hw_start(struct device *dev) ...@@ -558,11 +557,9 @@ static int stm32_adc_hw_start(struct device *dev)
struct stm32_adc *adc = iio_priv(indio_dev); struct stm32_adc *adc = iio_priv(indio_dev);
int ret; int ret;
if (adc->clk) { ret = clk_prepare_enable(adc->clk);
ret = clk_prepare_enable(adc->clk); if (ret)
if (ret) return ret;
return ret;
}
stm32_adc_set_res(adc); stm32_adc_set_res(adc);
...@@ -575,8 +572,7 @@ static int stm32_adc_hw_start(struct device *dev) ...@@ -575,8 +572,7 @@ static int stm32_adc_hw_start(struct device *dev)
return 0; return 0;
err_clk_dis: err_clk_dis:
if (adc->clk) clk_disable_unprepare(adc->clk);
clk_disable_unprepare(adc->clk);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment