Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4cb06cd5 authored by Jingoo Han's avatar Jingoo Han Committed by Linus Walleij
Browse files

gpio: max7301: use devm_kzalloc()



Use devm_kzalloc() to make cleanup paths simpler.

Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent c3fe2bf4
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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;
}