diff options
| author | Himangi Saraogi <[email protected]> | 2014-05-26 20:21:31 +0000 |
|---|---|---|
| committer | Anatolij Gustschin <[email protected]> | 2015-10-22 14:13:23 +0000 |
| commit | 39e69f55f85731d9c0320c03212a4d1f149464f0 (patch) | |
| tree | c78d730e099af9c99bb9fb0507163248f42cb18a /lib/mpi/mpicoder.c | |
| parent | powerpc: mpc512x: drop bogus and unused psc register bit definitions (diff) | |
| download | kernel-39e69f55f85731d9c0320c03212a4d1f149464f0.tar.gz kernel-39e69f55f85731d9c0320c03212a4d1f149464f0.zip | |
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 <[email protected]>
Acked-by: Julia Lawall <[email protected]>
Signed-off-by: Anatolij Gustschin <[email protected]>
Diffstat (limited to 'lib/mpi/mpicoder.c')
0 files changed, 0 insertions, 0 deletions
