Commit b9b34f24 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Ingo Molnar

x86: smp.c - align smp_ops assignments

Impact: cleanup

It's a bit hard to parse by eyes without
them being aligned.
Signed-off-by: default avatarCyrill Gorcunov <gorcunov@openvz.org>
LKML-Reference: <20090412165058.924175574@openvz.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 08306ce6
...@@ -193,19 +193,19 @@ void smp_call_function_single_interrupt(struct pt_regs *regs) ...@@ -193,19 +193,19 @@ void smp_call_function_single_interrupt(struct pt_regs *regs)
} }
struct smp_ops smp_ops = { struct smp_ops smp_ops = {
.smp_prepare_boot_cpu = native_smp_prepare_boot_cpu, .smp_prepare_boot_cpu = native_smp_prepare_boot_cpu,
.smp_prepare_cpus = native_smp_prepare_cpus, .smp_prepare_cpus = native_smp_prepare_cpus,
.smp_cpus_done = native_smp_cpus_done, .smp_cpus_done = native_smp_cpus_done,
.smp_send_stop = native_smp_send_stop, .smp_send_stop = native_smp_send_stop,
.smp_send_reschedule = native_smp_send_reschedule, .smp_send_reschedule = native_smp_send_reschedule,
.cpu_up = native_cpu_up, .cpu_up = native_cpu_up,
.cpu_die = native_cpu_die, .cpu_die = native_cpu_die,
.cpu_disable = native_cpu_disable, .cpu_disable = native_cpu_disable,
.play_dead = native_play_dead, .play_dead = native_play_dead,
.send_call_func_ipi = native_send_call_func_ipi, .send_call_func_ipi = native_send_call_func_ipi,
.send_call_func_single_ipi = native_send_call_func_single_ipi, .send_call_func_single_ipi = native_send_call_func_single_ipi,
}; };
EXPORT_SYMBOL_GPL(smp_ops); EXPORT_SYMBOL_GPL(smp_ops);
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