Skip to content

Commit

Permalink
[PATCH] kernel/printk.c: EXPORT_SYMBOL_UNUSED
Browse files Browse the repository at this point in the history
This patch marks unused exports as EXPORT_SYMBOL_UNUSED.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Jul 10, 2006
1 parent d0a0a5e commit c0fc84d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/printk.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ int console_printk[4] = {
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
Expand Down Expand Up @@ -773,7 +773,7 @@ int is_console_locked(void)
{
return console_locked;
}
EXPORT_SYMBOL(is_console_locked);
EXPORT_UNUSED_SYMBOL(is_console_locked); /* June 2006 */

/**
* release_console_sem - unlock the console system
Expand Down

0 comments on commit c0fc84d

Please sign in to comment.