aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/system.h
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2005-06-21 20:14:28 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-21 21:46:11 -0400
commit9a558cb4ec43ccbe82e2cf899ced37f29ac017df (patch)
tree360f64dcf8ecdb04371a2fd524fddb2424392564 /include/asm-arm/system.h
parent9723d95d1076e9ef394ff26162fb0b47531089b0 (diff)
[PATCH] arm: irqs_disabled() type fix
kernel/sched.c: In function `__might_sleep': kernel/sched.c:5461: warning: int format, long unsigned int arg (arg 3) We expect irqs_disabled() to return an int (poor man's bool). Acked-by: Russell King <rmk@arm.linux.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-arm/system.h')
-rw-r--r--include/asm-arm/system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-arm/system.h b/include/asm-arm/system.h
index 8405eb6558ed..39dd7008013c 100644
--- a/include/asm-arm/system.h
+++ b/include/asm-arm/system.h
@@ -308,7 +308,7 @@ do { \
308({ \ 308({ \
309 unsigned long flags; \ 309 unsigned long flags; \
310 local_save_flags(flags); \ 310 local_save_flags(flags); \
311 flags & PSR_I_BIT; \ 311 (int)(flags & PSR_I_BIT); \
312}) 312})
313 313
314#ifdef CONFIG_SMP 314#ifdef CONFIG_SMP