1
0
Fork 0

gpio: max730x: Remove kfree(ts) in __max730x_remove()

The memory for ts is allocated by devm_kzalloc now, so the kfree is not
required.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Juergen Beisert <jbe@pengutronix.de>
Reviewed-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
hifive-unleashed-5.1
Axel Lin 2014-04-14 15:30:41 +08:00 committed by Linus Walleij
parent 9dacc6de4c
commit b6d71fdbab
1 changed files with 2 additions and 3 deletions

View File

@ -237,10 +237,9 @@ int __max730x_remove(struct device *dev)
ts->write(dev, 0x04, 0x00);
ret = gpiochip_remove(&ts->chip);
if (!ret) {
if (!ret)
mutex_destroy(&ts->lock);
kfree(ts);
} else
else
dev_err(dev, "Failed to remove GPIO controller: %d\n", ret);
return ret;