[PATCH 3/6] gpio: max7301: use devm_kzalloc()

From: Jingoo Han
Date: Fri Mar 15 2013 - 05:15:16 EST


Use devm_kzalloc() to make cleanup paths simpler.

Signed-off-by: Jingoo Han <jg1.han@xxxxxxxxxxx>
---
drivers/gpio/gpio-max7301.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/gpio/gpio-max7301.c b/drivers/gpio/gpio-max7301.c
index c6c535c..6e1c984 100644
--- a/drivers/gpio/gpio-max7301.c
+++ b/drivers/gpio/gpio-max7301.c
@@ -61,7 +61,7 @@ static int max7301_probe(struct spi_device *spi)
if (ret < 0)
return ret;

- ts = kzalloc(sizeof(struct max7301), GFP_KERNEL);
+ ts = devm_kzalloc(&spi->dev, sizeof(struct max7301), GFP_KERNEL);
if (!ts)
return -ENOMEM;

@@ -70,8 +70,6 @@ static int max7301_probe(struct spi_device *spi)
ts->dev = &spi->dev;

ret = __max730x_probe(ts);
- if (ret)
- kfree(ts);
return ret;
}

--
1.7.2.5


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/