powerpc: Introduce the use of the managed version of kzalloc
authorHimangi Saraogi <himangi774@gmail.com>
Mon, 26 May 2014 20:21:31 +0000 (01:51 +0530)
committerAnatolij Gustschin <agust@denx.de>
Thu, 22 Oct 2015 14:13:23 +0000 (16:13 +0200)
commit39e69f55f85731d9c0320c03212a4d1f149464f0
treec78d730e099af9c99bb9fb0507163248f42cb18a
parentffcea122c42a856ac22dea75dc165fa070849f26
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>
arch/powerpc/platforms/52xx/mpc52xx_gpt.c
This page took 0.02476 seconds and 5 git commands to generate.