aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/interface.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski.k@gmail.com>2015-05-03 05:57:11 -0400
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2015-06-19 14:03:20 -0400
commit73744a64aab872703b851b9678a7f488b507eb81 (patch)
tree97122ca1b565a6edfb5299407c7148044e0d7b40 /drivers/rtc/interface.c
parent1796dcce2daacc125f2d60afc3f631ca29e36684 (diff)
rtc: interface: Remove unused return value from rtc_timer_cancel()
The rtc_timer_cancel() always returns 0 and cannot fail (calls only other void-returning functions). Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc/interface.c')
-rw-r--r--drivers/rtc/interface.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/rtc/interface.c b/drivers/rtc/interface.c
index 166fc60d8b55..a6b14c24d7e3 100644
--- a/drivers/rtc/interface.c
+++ b/drivers/rtc/interface.c
@@ -976,14 +976,12 @@ int rtc_timer_start(struct rtc_device *rtc, struct rtc_timer *timer,
976 * 976 *
977 * Kernel interface to cancel an rtc_timer 977 * Kernel interface to cancel an rtc_timer
978 */ 978 */
979int rtc_timer_cancel(struct rtc_device *rtc, struct rtc_timer *timer) 979void rtc_timer_cancel(struct rtc_device *rtc, struct rtc_timer *timer)
980{ 980{
981 int ret = 0;
982 mutex_lock(&rtc->ops_lock); 981 mutex_lock(&rtc->ops_lock);
983 if (timer->enabled) 982 if (timer->enabled)
984 rtc_timer_remove(rtc, timer); 983 rtc_timer_remove(rtc, timer);
985 mutex_unlock(&rtc->ops_lock); 984 mutex_unlock(&rtc->ops_lock);
986 return ret;
987} 985}
988 986
989 987