On 13/11/2018 15:13, YueHaibing wrote: > Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR > > Signed-off-by: YueHaibing <yuehaibing@xxxxxxxxxx> Reviewed-by: Daniel Lezcano <daniel.lezcano@xxxxxxxxxx> > --- > drivers/thermal/armada_thermal.c | 10 ++-------- > 1 file changed, 2 insertions(+), 8 deletions(-) > > diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c > index 92f67d40..4b36a30 100644 > --- a/drivers/thermal/armada_thermal.c > +++ b/drivers/thermal/armada_thermal.c > @@ -545,20 +545,14 @@ static int armada_thermal_probe_legacy(struct platform_device *pdev, > > priv->syscon = devm_regmap_init_mmio(&pdev->dev, base, > &armada_thermal_regmap_config); > - if (IS_ERR(priv->syscon)) > - return PTR_ERR(priv->syscon); > - > - return 0; > + return PTR_ERR_OR_ZERO(priv->syscon); > } > > static int armada_thermal_probe_syscon(struct platform_device *pdev, > struct armada_thermal_priv *priv) > { > priv->syscon = syscon_node_to_regmap(pdev->dev.parent->of_node); > - if (IS_ERR(priv->syscon)) > - return PTR_ERR(priv->syscon); > - > - return 0; > + return PTR_ERR_OR_ZERO(priv->syscon); > } > > static void armada_set_sane_name(struct platform_device *pdev, > > > -- <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook | <http://twitter.com/#!/linaroorg> Twitter | <http://www.linaro.org/linaro-blog/> Blog