mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
namespacecheck: fix kernel printk.c
Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
75d3bce2fc
commit
7f6f3a39d2
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue