diff options
| author | Himangi Saraogi <[email protected]> | 2014-05-22 18:58:48 +0000 |
|---|---|---|
| committer | Brian Norris <[email protected]> | 2014-05-28 20:27:55 +0000 |
| commit | 0c53be9de8f25efadee707132a596276f0a015e4 (patch) | |
| tree | aa0c02356a27a1f1531bb1fe486a76f06ba0c0be /tools/perf/scripts/python/check-perf-trace.py | |
| parent | mtd: pxa3xx_nand: make the driver work on big-endian systems (diff) | |
| download | kernel-0c53be9de8f25efadee707132a596276f0a015e4.tar.gz kernel-0c53be9de8f25efadee707132a596276f0a015e4.zip | |
mtd: bf5xx_nand: use 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. Also, the now unnecessary label out_err_hw_init is done away
with and the label out_err_kzalloc is renamed to out_err.
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]>
Signed-off-by: Brian Norris <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/check-perf-trace.py')
0 files changed, 0 insertions, 0 deletions
