diff options
| author | Himangi Saraogi <[email protected]> | 2014-05-19 16:55:11 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2014-05-21 20:29:52 +0000 |
| commit | 12b5c38f2dee5981c318171805fa62f2cd7475b3 (patch) | |
| tree | 27a88d8c38f5a8b9096d56f42cb05329eb7bcd62 /net/ipv4/tcp_output.c | |
| parent | atm: idt77252: Remove redundant error check (diff) | |
| download | kernel-12b5c38f2dee5981c318171805fa62f2cd7475b3.tar.gz kernel-12b5c38f2dee5981c318171805fa62f2cd7475b3.zip | |
ieee802154: 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 kfrees in probe and remove
functions. An explicit linux/device.h include is added to make sure
the devm_*() routine declarations are unambiguously available.
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);
...+>
}
@rem depends on prb@
identifier platform.removefn;
expression e;
@@
removefn(...) {
<...
- kfree(e);
...>
}
Signed-off-by: Himangi Saraogi <[email protected]>
Acked-by: Julia Lawall <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_output.c')
0 files changed, 0 insertions, 0 deletions
