Commit-ID:  784e452870c028a03e42af3bd437ec45a88dfe6d
Gitweb:     http://git.kernel.org/tip/784e452870c028a03e42af3bd437ec45a88dfe6d
Author:     Guillaume Gomez <guillaume1.go...@gmail.com>
AuthorDate: Wed, 23 Sep 2015 13:19:19 +0200
Committer:  Thomas Gleixner <t...@linutronix.de>
CommitDate: Sun, 11 Oct 2015 22:07:23 +0200

clock: Remove return statement from void functions

Signed-off-by: Guillaume Gomez <guillaume1.go...@gmail.com>
Cc: John Stultz <john.stu...@linaro.org>
Link: 
http://lkml.kernel.org/r/caaoqcfsdgmqswdbsetau%2byf8x0%2bdagcf_pffw0p5xh_bkkk...@mail.gmail.com
Signed-off-by: Thomas Gleixner <t...@linutronix.de>
---
 kernel/time/clocksource.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
index 174c594..de0ad66 100644
--- a/kernel/time/clocksource.c
+++ b/kernel/time/clocksource.c
@@ -595,16 +595,15 @@ static void __clocksource_select(bool skipcur)
  */
 static void clocksource_select(void)
 {
-       return __clocksource_select(false);
+       __clocksource_select(false);
 }
 
 static void clocksource_select_fallback(void)
 {
-       return __clocksource_select(true);
+       __clocksource_select(true);
 }
 
 #else /* !CONFIG_ARCH_USES_GETTIMEOFFSET */
-
 static inline void clocksource_select(void) { }
 static inline void clocksource_select_fallback(void) { }
 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to