]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - sitara-epos/sitara-epos-kernel.git/blob - kernel/up.c
video: da8xx-fb: correct suspend/resume sequence
[sitara-epos/sitara-epos-kernel.git] / kernel / up.c
1 /*
2  * Uniprocessor-only support functions.  The counterpart to kernel/smp.c
3  */
5 #include <linux/interrupt.h>
6 #include <linux/kernel.h>
7 #include <linux/export.h>
8 #include <linux/smp.h>
10 int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
11                                 int wait)
12 {
13         WARN_ON(cpu != 0);
15         local_irq_disable();
16         (func)(info);
17         local_irq_enable();
19         return 0;
20 }
21 EXPORT_SYMBOL(smp_call_function_single);