[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAAOQCfSDgmqSWDBsetau+yF8x0+DagCF_pfFw0p5xH_BKkKEog@mail.gmail.com>
Date: Wed, 23 Sep 2015 13:19:19 +0200
From: Guillaume Gomez <guillaume1.gomez@...il.com>
To: John Stultz <john.stultz@...aro.org>, tglx@...utronix.de,
linux-kernel@...r.kernel.org
Subject: [PATCH] clock: Remove unneeded return statement from void
Signed-off-by: Guillaume Gomez <guillaume1.gomez@...il.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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists