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

Commit af3357db authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: arch_timer: force re-selection of the best clocksource"

parents 531c9c5b 0ad71347
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -1154,9 +1154,15 @@ static bool __init arch_timer_needs_of_probing(void)

static int __init arch_timer_common_init(void)
{
	int ret;

	arch_timer_banner(arch_timers_present);
	arch_counter_register(arch_timers_present);
	return arch_timer_arch_init();
	ret = arch_timer_arch_init();
	if (!ret)
		clocksource_select_force();

	return ret;
}

/**