printk_recursion_bug_msg[] can become static.
Signed-off-by: Adrian Bunk <[email protected]>
---
This patch has been sent on:
- 13 Feb 2008
- 29 Jan 2008
77c15a78b65e014c00b533e4c5eeee98a71853fc
diff --git a/kernel/printk.c b/kernel/printk.c
index 3b7c968..f8e4229 100644
--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -623,7 +623,7 @@ asmlinkage int printk(const char *fmt, ...)
/* cpu currently holding logbuf_lock */
static volatile unsigned int printk_cpu = UINT_MAX;
-const char printk_recursion_bug_msg [] =
+static const char printk_recursion_bug_msg[] =
KERN_CRIT "BUG: recent printk recursion!\n";
static int printk_recursion_bug;