summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHimangi Saraogi <himangi774@gmail.com>2014-05-27 01:51:31 +0530
committerAnatolij Gustschin <agust@denx.de>2015-10-22 16:13:23 +0200
commit39e69f55f85731d9c0320c03212a4d1f149464f0 (patch)
treec78d730e099af9c99bb9fb0507163248f42cb18a /scripts
parentffcea122c42a856ac22dea75dc165fa070849f26 (diff)
powerpc: Introduce the use of the managed version of kzalloc
This patch moves data allocated using kzalloc to managed data allocated using devm_kzalloc and cleans now unnecessary kfree in probe function. The following Coccinelle semantic patch was used for making the change: @platform@ identifier p, probefn, removefn; @@ struct platform_driver p = { .probe = probefn, .remove = removefn, }; @prb@ identifier platform.probefn, pdev; expression e, e1, e2; @@ probefn(struct platform_device *pdev, ...) { <+... - e = kzalloc(e1, e2) + e = devm_kzalloc(&pdev->dev, e1, e2) ... ?-kfree(e); ...+> } Signed-off-by: Himangi Saraogi <himangi774@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'scripts')
0 files changed, 0 insertions, 0 deletions