Skip to content

Commit

Permalink
namespacecheck: fix kernel printk.c
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner committed May 24, 2008
1 parent 75d3bce commit 7f6f3a3
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 @@ -231,7 +231,7 @@ static inline void boot_delay_msec(void)
/*
* Return the number of unread characters in the log buffer.
*/
int log_buf_get_len(void)
static int log_buf_get_len(void)
{
return logged_chars;
}
Expand Down Expand Up @@ -270,7 +270,7 @@ int log_buf_copy(char *dest, int idx, int len)
/*
* Extract a single character from the log buffer.
*/
int log_buf_read(int idx)
static int log_buf_read(int idx)
{
char ret;

Expand Down

0 comments on commit 7f6f3a3

Please sign in to comment.