diff options
| author | Simon Glass <[email protected]> | 2017-12-04 13:48:23 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-12-07 15:17:00 -0500 |
| commit | c5404b64fb5a35d41f7eff6d12b8ffdb0c851040 (patch) | |
| tree | 599a546f22a8349cee2989abf10f295124266180 /common/stdio.c | |
| parent | 0ad0458c76107b29325b8c38804e0407bed42a79 (diff) | |
Drop the log buffer
This does not appear to be used by any boards. Before introducing a new
log system, remove this old one.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Diffstat (limited to 'common/stdio.c')
| -rw-r--r-- | common/stdio.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/common/stdio.c b/common/stdio.c index ee4f0bda9ea..2e5143a0255 100644 --- a/common/stdio.c +++ b/common/stdio.c @@ -17,9 +17,6 @@ #include <malloc.h> #include <stdio_dev.h> #include <serial.h> -#ifdef CONFIG_LOGBUFFER -#include <logbuff.h> -#endif #if defined(CONFIG_SYS_I2C) #include <i2c.h> @@ -381,9 +378,6 @@ int stdio_add_devices(void) #if defined(CONFIG_KEYBOARD) && !defined(CONFIG_DM_KEYBOARD) drv_keyboard_init (); #endif -#ifdef CONFIG_LOGBUFFER - drv_logbuff_init (); -#endif drv_system_init (); serial_stdio_init (); #ifdef CONFIG_USB_TTY |
