Commit c0fc84d2 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] kernel/printk.c: EXPORT_SYMBOL_UNUSED

This patch marks unused exports as EXPORT_SYMBOL_UNUSED.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent d0a0a5ee
...@@ -52,7 +52,7 @@ int console_printk[4] = { ...@@ -52,7 +52,7 @@ int console_printk[4] = {
DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */ DEFAULT_CONSOLE_LOGLEVEL, /* default_console_loglevel */
}; };
EXPORT_SYMBOL(console_printk); EXPORT_UNUSED_SYMBOL(console_printk); /* June 2006 */
/* /*
* Low lever drivers may need that to know if they can schedule in * Low lever drivers may need that to know if they can schedule in
...@@ -773,7 +773,7 @@ int is_console_locked(void) ...@@ -773,7 +773,7 @@ int is_console_locked(void)
{ {
return console_locked; return console_locked;
} }
EXPORT_SYMBOL(is_console_locked); EXPORT_UNUSED_SYMBOL(is_console_locked); /* June 2006 */
/** /**
* release_console_sem - unlock the console system * release_console_sem - unlock the console system
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment