printk: Move EXPORT_SYMBOL() closer to vprintk definition
Commit28e1745b9f
("printk: rename vprintk_func to vprintk") while improving readability by removing vprintk indirection, inadvertently placed the EXPORT_SYMBOL() for the newly renamed function at the end of the file. For reader sanity, and as is convention move the EXPORT_SYMBOL() declaration just after the end of the function. Fixes:28e1745b9f
("printk: rename vprintk_func to vprintk") Signed-off-by: Punit Agrawal <punitagrawal@gmail.com> Acked-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Acked-by: Sergey Senozhatsky <senozhatsky@chromium.org> Signed-off-by: Petr Mladek <pmladek@suse.com> Link: https://lore.kernel.org/r/20210614235635.887365-1-punitagrawal@gmail.com
This commit is contained in:
Родитель
7f3d08b255
Коммит
6262e1b906
|
@ -391,6 +391,7 @@ asmlinkage int vprintk(const char *fmt, va_list args)
|
|||
/* No obstacles. */
|
||||
return vprintk_default(fmt, args);
|
||||
}
|
||||
EXPORT_SYMBOL(vprintk);
|
||||
|
||||
void __init printk_safe_init(void)
|
||||
{
|
||||
|
@ -411,4 +412,3 @@ void __init printk_safe_init(void)
|
|||
/* Flush pending messages that did not have scheduled IRQ works. */
|
||||
printk_safe_flush();
|
||||
}
|
||||
EXPORT_SYMBOL(vprintk);
|
||||
|
|
Загрузка…
Ссылка в новой задаче