diff options
author | Tony Lindgren <tony@atomide.com> | 2010-08-16 10:21:20 +0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-08-16 10:22:04 +0400 |
commit | a4192d32ae6788dc607e96fa85f9c9c8274e2212 (patch) | |
tree | 5dd733bcbcd1a44cff0cec5ec88f1e99719728e4 /arch/arm/mach-omap2/omap-smp.c | |
parent | 8098bb0d8c7fe4ace7d13274c85a149503eee114 (diff) | |
download | linux-a4192d32ae6788dc607e96fa85f9c9c8274e2212.tar.xz |
omap: Fix sev instruction usage for multi-omap
Otherwise we get the following error with omap3_defconfig and CONFIG_SMP:
Error: selected processor does not support `sev'
Signed-off-by: Tony Lindgren <tony@atomide.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap-smp.c')
-rw-r--r-- | arch/arm/mach-omap2/omap-smp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/omap-smp.c b/arch/arm/mach-omap2/omap-smp.c index af3c20c8d3f9..9e9f70e18e3c 100644 --- a/arch/arm/mach-omap2/omap-smp.c +++ b/arch/arm/mach-omap2/omap-smp.c @@ -102,8 +102,7 @@ static void __init wakeup_secondary(void) * Send a 'sev' to wake the secondary core from WFE. * Drain the outstanding writes to memory */ - dsb(); - set_event(); + dsb_sev(); mb(); } |