diff options
author | Prarit Bhargava <[email protected]> | 2019-02-08 19:24:49 +0100 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <[email protected]> | 2019-02-08 19:24:49 +0100 |
commit | a1939185c7a907f91b40da259a610ce2e2da9e18 (patch) | |
tree | a4b0fe3338b0337971aa57366591322c3b56ca00 | |
parent | 1ac1d4845c013af9ca003adda7dfedb25a8e42ec (diff) |
printk: Export console_printk
The fbcon can be built as a module and requires console_printk.
Export console_printk.
Signed-off-by: Prarit Bhargava <[email protected]>
Reviewed-by: Sergey Senozhatsky <[email protected]>
Acked-by: Petr Mladek <[email protected]>
Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]>
-rw-r--r-- | kernel/printk/printk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index d3d170374ceb..8201019d1fff 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); |