From: Prarit Bhargava Date: Fri, 8 Feb 2019 18:24:49 +0000 (+0100) Subject: printk: Export console_printk X-Git-Tag: v5.1-rc1~20^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a1939185c7a907f91b40da259a610ce2e2da9e18;p=thirdparty%2Fkernel%2Flinux.git printk: Export console_printk The fbcon can be built as a module and requires console_printk. Export console_printk. Signed-off-by: Prarit Bhargava Reviewed-by: Sergey Senozhatsky Acked-by: Petr Mladek Signed-off-by: Bartlomiej Zolnierkiewicz --- diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index d3d170374cebf..8201019d1fff6 100644 --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c @@ -65,6 +65,7 @@ int console_printk[4] = { CONSOLE_LOGLEVEL_MIN, /* minimum_console_loglevel */ CONSOLE_LOGLEVEL_DEFAULT, /* default_console_loglevel */ }; +EXPORT_SYMBOL_GPL(console_printk); atomic_t ignore_console_lock_warning __read_mostly = ATOMIC_INIT(0); EXPORT_SYMBOL(ignore_console_lock_warning);