From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964848AbaESRgA (ORCPT ); Mon, 19 May 2014 13:36:00 -0400 Received: from mail-pa0-f46.google.com ([209.85.220.46]:59329 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964802AbaESRf6 (ORCPT ); Mon, 19 May 2014 13:35:58 -0400 Date: Mon, 19 May 2014 23:05:51 +0530 From: Himangi Saraogi To: Olof Johansson , Benjamin Herrenschmidt , Paul Mackerras , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Cc: julia.lawall@lip6.fr Subject: [PATCH] dt/powerpc: Introduce the use of the managed version of kzalloc Message-ID: <20140519173550.GA10502@himangi-Dell> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 labels out_free_priv and out are done away with. 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 Acked-by: Julia Lawall --- Not compile tested due to incompatible architecture arch/powerpc/platforms/pasemi/gpio_mdio.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/arch/powerpc/platforms/pasemi/gpio_mdio.c b/arch/powerpc/platforms/pasemi/gpio_mdio.c index 15adee5..a722a4a 100644 --- a/arch/powerpc/platforms/pasemi/gpio_mdio.c +++ b/arch/powerpc/platforms/pasemi/gpio_mdio.c @@ -226,15 +226,14 @@ static int gpio_mdio_probe(struct platform_device *ofdev) const unsigned int *prop; int err; - err = -ENOMEM; - priv = kzalloc(sizeof(struct gpio_priv), GFP_KERNEL); + priv = devm_kzalloc(&ofdev->dev, sizeof(struct gpio_priv), GFP_KERNEL); if (!priv) - goto out; + return -ENOMEM; new_bus = mdiobus_alloc(); if (!new_bus) - goto out_free_priv; + return -ENOMEM; new_bus->name = "pasemi gpio mdio bus"; new_bus->read = &gpio_mdio_read; @@ -268,9 +267,6 @@ static int gpio_mdio_probe(struct platform_device *ofdev) out_free_irq: kfree(new_bus); -out_free_priv: - kfree(priv); -out: return err; } @@ -283,7 +279,6 @@ static int gpio_mdio_remove(struct platform_device *dev) dev_set_drvdata(&dev->dev, NULL); - kfree(bus->priv); bus->priv = NULL; mdiobus_free(bus); -- 1.9.1