summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDeepak Saxena <dsaxena@plexity.net>2007-03-19 16:49:45 -0700
committerRalf Baechle <ralf@linux-mips.org>2007-03-24 17:01:49 +0000
commit83598f1cb06101e972b1f5aaf3408eb729622fa8 (patch)
tree487203f56343ff185d835295e9ddf745d6a1df5d /include
parentc9d06962233bd0ce9bf46b007900eb88e716e948 (diff)
downloadlinux-3.10-83598f1cb06101e972b1f5aaf3408eb729622fa8.tar.gz
linux-3.10-83598f1cb06101e972b1f5aaf3408eb729622fa8.tar.bz2
linux-3.10-83598f1cb06101e972b1f5aaf3408eb729622fa8.zip
[MIPS] Make MIPS udelay() preempt safe under DEBUG_PREEMPT
Signed-off-by: Manish Lachwani <mlachwani@mvista.com> Signed-off-by: Deepak Saxena <dsaxena@mvista.com> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include')
-rw-r--r--include/asm-mips/delay.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/delay.h b/include/asm-mips/delay.h
index ea77050f8e3..223d156efb9 100644
--- a/include/asm-mips/delay.h
+++ b/include/asm-mips/delay.h
@@ -79,7 +79,7 @@ static inline void __udelay(unsigned long usecs, unsigned long lpj)
__delay(usecs);
}
-#define __udelay_val cpu_data[smp_processor_id()].udelay_val
+#define __udelay_val cpu_data[raw_smp_processor_id()].udelay_val
#define udelay(usecs) __udelay((usecs),__udelay_val)