Hi all, Today's linux-next merge of the tip tree got a conflict in drivers/clocksource/cadence_ttc_timer.c between commit c1dcc927dae0 ("clocksource: cadence_ttc: Fix mutex taken inside interrupt context") from Linus' tree and commit dfded00902d7 ("clocksource: cadence_ttc_timer: Switch to sched_clock_register()") from the tip tree. I fixed it up (I think - see below) and can carry the fix as necessary (no action is required). -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --cc drivers/clocksource/cadence_ttc_timer.c index a92350b55d32,8c7382bf260c..000000000000 --- a/drivers/clocksource/cadence_ttc_timer.c +++ b/drivers/clocksource/cadence_ttc_timer.c @@@ -308,7 -306,8 +308,8 @@@ static void __init ttc_setup_clocksourc } ttc_sched_clock_val_reg = base + TTC_COUNT_VAL_OFFSET; - setup_sched_clock(ttc_sched_clock_read, 16, ttccs->ttc.freq / PRESCALE); + sched_clock_register(ttc_sched_clock_read, 16, - clk_get_rate(ttccs->ttc.clk) / PRESCALE); ++ ttccs->ttc.freq / PRESCALE); } static int ttc_rate_change_clockevent_cb(struct notifier_block *nb,