diff options
author | Himangi Saraogi <himangi774@gmail.com> | 2014-05-27 01:51:31 +0530 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2015-10-22 16:13:23 +0200 |
commit | 39e69f55f85731d9c0320c03212a4d1f149464f0 (patch) | |
tree | c78d730e099af9c99bb9fb0507163248f42cb18a /scripts | |
parent | ffcea122c42a856ac22dea75dc165fa070849f26 (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