diff options
author | Jeff Dike <[email protected]> | 2007-02-10 01:44:15 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2007-02-11 10:51:22 -0800 |
commit | 0d0d0ed426f8f5ba6b74ba30fcdcd27c54ce4724 (patch) | |
tree | ecc96739305056c8e7fe3a8411970a2a078ab005 /arch/um/kernel/sysrq.c | |
parent | 27aa6ef3c0e8220b27b0a8d2d0bae7cd0a6d2f78 (diff) |
[PATCH] uml: const a variable
kstack_depth_to_print can be made const.
Signed-off-by: Jeff Dike <[email protected]>
Cc: Paolo 'Blaisorblade' Giarrusso <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'arch/um/kernel/sysrq.c')
-rw-r--r-- | arch/um/kernel/sysrq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/kernel/sysrq.c b/arch/um/kernel/sysrq.c index 239c98054dec..f9e02b31a97a 100644 --- a/arch/um/kernel/sysrq.c +++ b/arch/um/kernel/sysrq.c @@ -50,7 +50,7 @@ void dump_stack(void) EXPORT_SYMBOL(dump_stack); /*Stolen from arch/i386/kernel/traps.c */ -static int kstack_depth_to_print = 24; +static const int kstack_depth_to_print = 24; /* This recently started being used in arch-independent code too, as in * kernel/sched.c.*/ |