All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clock: Remove unneeded return statement from void
@ 2015-09-23 11:19 Guillaume Gomez
  2015-10-11 20:09 ` [tip:timers/core] clock: Remove return statement from void functions tip-bot for Guillaume Gomez
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Guillaume Gomez @ 2015-09-23 11:19 UTC (permalink / raw)
  To: John Stultz, tglx, linux-kernel

Signed-off-by: Guillaume Gomez <guillaume1.gomez@gmail.com>
---
 kernel/time/clocksource.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
index 841b72f..5e83c38 100644
--- a/kernel/time/clocksource.c
+++ b/kernel/time/clocksource.c
@@ -595,12 +595,12 @@ 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 */
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-10-11 20:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-23 11:19 [PATCH] clock: Remove unneeded return statement from void Guillaume Gomez
2015-10-11 20:09 ` [tip:timers/core] clock: Remove return statement from void functions tip-bot for Guillaume Gomez
2015-10-11 20:14 ` [PATCH] clock: Remove unneeded return statement from void Thomas Gleixner
2015-10-11 20:15 ` [tip:timers/core] clocksource: Remove return statement from void functions tip-bot for Guillaume Gomez

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.