[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1506441580-28115-1-git-send-email-prarit@redhat.com>
Date: Tue, 26 Sep 2017 11:59:40 -0400
From: Prarit Bhargava <prarit@...hat.com>
To: linux-kernel@...r.kernel.org
Cc: Prarit Bhargava <prarit@...hat.com>,
Thomas Gleixner <tglx@...utronix.de>
Subject: [PATCH] printk: Fix unused printk_time compile warning when !CONFIG_PRINTK
Patch is against -tip and tglx requested a delta patch.
P.
---8<---
When !CONFIG_PRINTK the compile warns with
CC kernel/printk/printk.o
kernel/printk/printk.c:1983:12: warning: ‘printk_time’ defined but not
used [-Wunused-variable]
static int printk_time;
Remove the printk_time declaration for !CONFIG_PRINTK.
Reported-by: Petr Mladek <pmladek@...e.com>
Signed-off-by: Prarit Bhargava <prarit@...hat.com>
Cc: Thomas Gleixner <tglx@...utronix.de>
---
kernel/printk/printk.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
index 5e0bf2ef02f7..fe94246fa073 100644
--- a/kernel/printk/printk.c
+++ b/kernel/printk/printk.c
@@ -1979,8 +1979,6 @@ static void call_console_drivers(const char *ext_text, size_t ext_len,
static size_t msg_print_text(const struct printk_log *msg,
bool syslog, char *buf, size_t size) { return 0; }
static bool suppress_message_printing(int level) { return false; }
-
-static int printk_time;
#endif /* CONFIG_PRINTK */
#ifdef CONFIG_EARLY_PRINTK
--
1.8.5.5
Powered by blists - more mailing lists