[PATCH] drivers/mtd/devices/bcm47xxsflash.c: correct argument to kfree
Julia Lawall
Julia.Lawall at lip6.fr
Sat Jun 8 11:36:23 EDT 2013
From: Julia Lawall <Julia.Lawall at lip6.fr>
The argument to kfree should not be the address of a structure field.
The argument is adjusted to correspond to what is found in the subsequent
remove function.
The semantic match that finds this problem is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@
expression e;
identifier f;
@@
* kfree(&e->f)
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall at lip6.fr>
---
drivers/mtd/devices/bcm47xxsflash.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/devices/bcm47xxsflash.c b/drivers/mtd/devices/bcm47xxsflash.c
index 2060856..59848e7 100644
--- a/drivers/mtd/devices/bcm47xxsflash.c
+++ b/drivers/mtd/devices/bcm47xxsflash.c
@@ -155,7 +155,7 @@ static int bcm47xxsflash_bcma_probe(struct platform_device *pdev)
return 0;
err_dev_reg:
- kfree(&b47s->mtd);
+ kfree(b47s);
out:
return err;
}
More information about the linux-mtd
mailing list