Skip to content

Commit

Permalink
pwm: omap-dmtimer: Simplify error handling
Browse files Browse the repository at this point in the history
[ Upstream commit c4cf7aa ]

Instead of doing error handling in the middle of ->probe(), move error
handling and freeing the reference to timer to the end.

This fixes a resource leak as dm_timer wasn't freed when allocating
*omap failed.

Implementation note: The put: label was never reached without a goto and
ret being unequal to 0, so the removed return statement is fine.

Fixes: 6604c65 ("pwm: Add PWM driver for OMAP using dual-mode timers")
Signed-off-by: Uwe Kleine-König <[email protected]>
Signed-off-by: Thierry Reding <[email protected]>
Signed-off-by: Sasha Levin <[email protected]>
  • Loading branch information
Uwe Kleine-König authored and gregkh committed Feb 24, 2020
1 parent 0ef2661 commit be9cc6c
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions drivers/pwm/pwm-omap-dmtimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,15 +301,10 @@ static int pwm_omap_dmtimer_probe(struct platform_device *pdev)
goto put;
}

put:
of_node_put(timer);
if (ret < 0)
return ret;

omap = devm_kzalloc(&pdev->dev, sizeof(*omap), GFP_KERNEL);
if (!omap) {
pdata->free(dm_timer);
return -ENOMEM;
ret = -ENOMEM;
goto err_alloc_omap;
}

omap->pdata = pdata;
Expand Down Expand Up @@ -342,13 +337,28 @@ static int pwm_omap_dmtimer_probe(struct platform_device *pdev)
ret = pwmchip_add(&omap->chip);
if (ret < 0) {
dev_err(&pdev->dev, "failed to register PWM\n");
omap->pdata->free(omap->dm_timer);
return ret;
goto err_pwmchip_add;
}

of_node_put(timer);

platform_set_drvdata(pdev, omap);

return 0;

err_pwmchip_add:

/*
* *omap is allocated using devm_kzalloc,
* so no free necessary here
*/
err_alloc_omap:

pdata->free(dm_timer);
put:
of_node_put(timer);

return ret;
}

static int pwm_omap_dmtimer_remove(struct platform_device *pdev)
Expand Down

0 comments on commit be9cc6c

Please sign in to comment.