Commit d74892c5 authored by Luiz Capitulino's avatar Luiz Capitulino Committed by Thomas Gleixner

clockevents: Drop redundant cpumask check in tick_check_new_device()

The same check is performed by tick_check_percpu().
Signed-off-by: default avatarLuiz Capitulino <lcapitulino@redhat.com>
Link: http://lkml.kernel.org/r/20150729151417.069d1bb0@redhat.comSigned-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 5a447f09
......@@ -304,9 +304,6 @@ void tick_check_new_device(struct clock_event_device *newdev)
int cpu;
cpu = smp_processor_id();
if (!cpumask_test_cpu(cpu, newdev->cpumask))
goto out_bc;
td = &per_cpu(tick_cpu_device, cpu);
curdev = td->evtdev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment