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

Commit 4c5158d4 authored by Russell King's avatar Russell King Committed by Russell King
Browse files

[ARM] smp: fix style issues in smp_twd.c

parent f32f4ce2
Loading
Loading
Loading
Loading
+14 −12
Original line number Diff line number Diff line
@@ -72,8 +72,10 @@ static int twd_set_next_event(unsigned long evt,
{
	unsigned long ctrl = __raw_readl(twd_base + TWD_TIMER_CONTROL);

	ctrl |= TWD_TIMER_CONTROL_ENABLE;

	__raw_writel(evt, twd_base + TWD_TIMER_COUNTER);
	__raw_writel(ctrl | TWD_TIMER_CONTROL_ENABLE, twd_base + TWD_TIMER_CONTROL);
	__raw_writel(ctrl, twd_base + TWD_TIMER_CONTROL);

	return 0;
}
@@ -104,7 +106,7 @@ static void __cpuinit twd_calibrate_rate(void)
	 * the timer ticks
	 */
	if (twd_timer_rate == 0) {
		printk("Calibrating local timer... ");
		printk(KERN_INFO "Calibrating local timer... ");

		/* Wait for a tick to start */
		waitjiffies = get_jiffies_64() + 1;