[PATCH 1/3] printk: Avoid warning when CONFIG_PRINTK is disabled

From: Gustavo F. Padovan
Date: Tue Feb 09 2010 - 22:50:39 EST


kernel/printk.c:72: warning: âsaved_console_loglevelâ defined but not used

Signed-off-by: Gustavo F. Padovan <padovan@xxxxxxxxxxxxxx>
---
kernel/printk.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/kernel/printk.c b/kernel/printk.c
index 1751c45..ed6487d 100644
--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -69,8 +69,6 @@ int console_printk[4] = {
DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */
};

-static int saved_console_loglevel = -1;
-
/*
* Low level drivers may need that to know if they can schedule in
* their unblank() callback or not. So let's export it.
@@ -145,6 +143,7 @@ static char __log_buf[__LOG_BUF_LEN];
static char *log_buf = __log_buf;
static int log_buf_len = __LOG_BUF_LEN;
static unsigned logged_chars; /* Number of chars produced since last read+clear operation */
+static int saved_console_loglevel = -1;

#ifdef CONFIG_KEXEC
/*
--
1.6.4.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/