Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cfed432d authored by Guillaume Gomez's avatar Guillaume Gomez Committed by Thomas Gleixner
Browse files

clocksource: Remove return statement from void functions

parent 3ed769bd
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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) { }