projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2eba318
)
microblaze: Remove sparse error in traps.c
author
Michal Simek
<monstr@monstr.eu>
Thu, 16 Apr 2009 09:10:07 +0000
(11:10 +0200)
committer
Michal Simek
<monstr@monstr.eu>
Thu, 23 Apr 2009 14:09:17 +0000
(16:09 +0200)
CHECK arch/microblaze/kernel/traps.c
arch/microblaze/kernel/traps.c:37:47: warning: Using plain integer as NULL pointer
CC arch/microblaze/kernel/traps.o
Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/kernel/traps.c
patch
|
blob
|
history
diff --git
a/arch/microblaze/kernel/traps.c
b/arch/microblaze/kernel/traps.c
index
fbdc533
..
293ef48
100644
(file)
--- a/
arch/microblaze/kernel/traps.c
+++ b/
arch/microblaze/kernel/traps.c
@@
-34,7
+34,7
@@
static int kstack_depth_to_print = 24;
static int __init kstack_setup(char *s)
{
- kstack_depth_to_print = strict_strtoul(s, 0,
0
);
+ kstack_depth_to_print = strict_strtoul(s, 0,
NULL
);
return 1;
}