2021-07-27 13:08:35

by Dmitry Safonov

[permalink] [raw]
Subject: [PATCH v3 1/2] printk: Remove console_silent()

It' unused since removal of mn10300:
commit 739d875dd698 ("mn10300: Remove the architecture")
x86 stopped using it in v2.6.12 (see history git):
commit 7574828b3dbb ("[PATCH] x86_64: add nmi button support")

Let's clean it up from the header.

Signed-off-by: Dmitry Safonov <[email protected]>
Reviewed-by: Petr Mladek <[email protected]>
---
include/linux/printk.h | 5 -----
1 file changed, 5 deletions(-)

diff --git a/include/linux/printk.h b/include/linux/printk.h
index e834d78f0478..a63f468a8239 100644
--- a/include/linux/printk.h
+++ b/include/linux/printk.h
@@ -70,11 +70,6 @@ extern int console_printk[];
#define minimum_console_loglevel (console_printk[2])
#define default_console_loglevel (console_printk[3])

-static inline void console_silent(void)
-{
- console_loglevel = CONSOLE_LOGLEVEL_SILENT;
-}
-
static inline void console_verbose(void)
{
if (console_loglevel)
--
2.32.0



2021-07-28 01:24:56

by Sergey Senozhatsky

[permalink] [raw]
Subject: Re: [PATCH v3 1/2] printk: Remove console_silent()

On (21/07/27 14:06), Dmitry Safonov wrote:
> It' unused since removal of mn10300:
> commit 739d875dd698 ("mn10300: Remove the architecture")
> x86 stopped using it in v2.6.12 (see history git):
> commit 7574828b3dbb ("[PATCH] x86_64: add nmi button support")
>
> Let's clean it up from the header.

Nice.

> Signed-off-by: Dmitry Safonov <[email protected]>
> Reviewed-by: Petr Mladek <[email protected]>

Reviewed-by: Sergey Senozhatsky <[email protected]>