aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2015-09-23 07:19:19 -0400
committerThomas Gleixner <tglx@linutronix.de>2015-10-11 16:13:46 -0400
commitcfed432d7f4114e16e0163bcfe65e96f0c304493 (patch)
treef0ade21ffa5df2303ac27a9a0a57128b70f0cd8f
parent3ed769bdb2a2484fd7f9f7f3047413053aacbe21 (diff)
clocksource: Remove return statement from void functions
Signed-off-by: Guillaume Gomez <guillaume1.gomez@gmail.com> Cc: John Stultz <john.stultz@linaro.org> Link: http://lkml.kernel.org/r/CAAOQCfSDgmqSWDBsetau%2ByF8x0%2BDagCF_pfFw0p5xH_BKkKEog@mail.gmail.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--kernel/time/clocksource.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
index 174c594ff8ef..de0ad66f2b21 100644
--- a/kernel/time/clocksource.c
+++ b/kernel/time/clocksource.c
@@ -595,16 +595,15 @@ static void __clocksource_select(bool skipcur)
595 */ 595 */
596static void clocksource_select(void) 596static void clocksource_select(void)
597{ 597{
598 return __clocksource_select(false); 598 __clocksource_select(false);
599} 599}
600 600
601static void clocksource_select_fallback(void) 601static void clocksource_select_fallback(void)
602{ 602{
603 return __clocksource_select(true); 603 __clocksource_select(true);
604} 604}
605 605
606#else /* !CONFIG_ARCH_USES_GETTIMEOFFSET */ 606#else /* !CONFIG_ARCH_USES_GETTIMEOFFSET */
607
608static inline void clocksource_select(void) { } 607static inline void clocksource_select(void) { }
609static inline void clocksource_select_fallback(void) { } 608static inline void clocksource_select_fallback(void) { }
610 609