From: John Crispin Date: Tue, 10 Mar 2015 20:19:54 +0000 (+0000) Subject: ar71xx: fix gpio-latch driver X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=94e46b07a83edda6a0ebe0e80a09c16b9e0f80e8 ar71xx: fix gpio-latch driver gpio api has changed. the remove call no longer returns a value. Signed-off-by: John Crispin SVN-Revision: 44650 --- diff --git a/target/linux/ar71xx/files/drivers/gpio/gpio-latch.c b/target/linux/ar71xx/files/drivers/gpio/gpio-latch.c index 1efa1a1e13..d911f6a2cb 100644 --- a/target/linux/ar71xx/files/drivers/gpio/gpio-latch.c +++ b/target/linux/ar71xx/files/drivers/gpio/gpio-latch.c @@ -193,7 +193,8 @@ static int gpio_latch_remove(struct platform_device *pdev) { struct gpio_latch_chip *glc = platform_get_drvdata(pdev); - return gpiochip_remove(&glc->gc);; + gpiochip_remove(&glc->gc); + return 0; }