Skip to content

Commit

Permalink
[MIPS] Export smp_call_function and smp_call_function_single.
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Dearman <chris@mips.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Zenon Fortuna authored and Ralf Baechle committed Jun 16, 2008
1 parent 461a082 commit a9ad02b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arch/mips/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ int smp_call_function(void (*func) (void *info), void *info, int retry,
{
return smp_call_function_mask(cpu_online_map, func, info, retry, wait);
}
EXPORT_SYMBOL(smp_call_function);

void smp_call_function_interrupt(void)
{
Expand Down Expand Up @@ -271,6 +272,7 @@ int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
put_cpu();
return 0;
}
EXPORT_SYMBOL(smp_call_function_single);

static void stop_this_cpu(void *dummy)
{
Expand Down

0 comments on commit a9ad02b

Please sign in to comment.