diff options
author | Ingo Molnar <[email protected]> | 2013-04-10 12:38:48 +0200 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2013-04-10 12:38:48 +0200 |
commit | 59f0eaaacd1fb5140af6705daaafb450ef3bd4ab (patch) | |
tree | 73a1069dfdd7a70839367b948487cb8e8ab86c0b | |
parent | f4e2e9a4b26789d963000f974f2dc80230bb4674 (diff) |
bfin: Fix typo in arch_cpu_idle()
Introduced by commit 25d67f860f3a ("bfin: Use generic idle loop").
Cc: Thomas Gleixner <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Rusty Russell <[email protected]>
Cc: Paul McKenney <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Cc: Srivatsa S. Bhat <[email protected]>
Cc: Magnus Damm <[email protected]>
Cc: Mike Frysinger <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/blackfin/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/kernel/process.c b/arch/blackfin/kernel/process.c index f34323a90541..4aa5545c4fde 100644 --- a/arch/blackfin/kernel/process.c +++ b/arch/blackfin/kernel/process.c @@ -65,7 +65,7 @@ void arch_cpu_idle(void) hard_local_irq_enable(); } -#ufdef CONFIG_HOTPLUG_CPU +#ifdef CONFIG_HOTPLUG_CPU void arch_cpu_idle_dead(void) { cpu_die(); |