Skip to content

Commit

Permalink
thermal: fix ptr_ret.cocci warnings
Browse files Browse the repository at this point in the history
drivers/thermal/tango_thermal.c:86:1-3: WARNING: PTR_ERR_OR_ZERO can be used

 Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR

Generated by: scripts/coccinelle/api/ptr_ret.cocci

CC: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
  • Loading branch information
kbuild test robot authored and Eduardo Valentin committed May 17, 2016
1 parent d290160 commit bba07c1
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/thermal/tango_thermal.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,7 @@ static int tango_thermal_probe(struct platform_device *pdev)
writel(CMD_ON, priv->base + TEMPSI_CMD);

tzdev = devm_thermal_zone_of_sensor_register(&pdev->dev, 0, priv, &ops);
if (IS_ERR(tzdev))
return PTR_ERR(tzdev);

return 0;
return PTR_ERR_OR_ZERO(tzdev);
}

static const struct of_device_id tango_sensor_ids[] = {
Expand Down

0 comments on commit bba07c1

Please sign in to comment.