]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
rtc: max8997: Fix the returned value in case of error in 'max8997_rtc_read_alarm()'
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Wed, 14 Nov 2018 17:19:51 +0000 (18:19 +0100)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 22 Nov 2018 17:11:35 +0000 (18:11 +0100)
In case of error, we return 0.
This is spurious and not consistent with the other functions of the driver.
Propagate the error code instead.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/rtc/rtc-max8997.c

index 08c661a332ec0e73b47e08522feb39ad1f8ff5ae..20e50d9fdf88230165a3029e49281afa5e065b51 100644 (file)
@@ -215,7 +215,7 @@ static int max8997_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
 
 out:
        mutex_unlock(&info->lock);
-       return 0;
+       return ret;
 }
 
 static int max8997_rtc_stop_alarm(struct max8997_rtc_info *info)