diff options
author | Simon Glass <sjg@chromium.org> | 2017-12-04 13:48:23 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-12-07 15:17:00 -0500 |
commit | c5404b64fb5a35d41f7eff6d12b8ffdb0c851040 (patch) | |
tree | 599a546f22a8349cee2989abf10f295124266180 /common/image.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 <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common/image.c')
-rw-r--r-- | common/image.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/common/image.c b/common/image.c index 4ec4744589..4bcf6b3128 100644 --- a/common/image.c +++ b/common/image.c @@ -15,10 +15,6 @@ #include <status_led.h> #endif -#ifdef CONFIG_LOGBUFFER -#include <logbuff.h> -#endif - #include <rtc.h> #include <environment.h> @@ -1154,11 +1150,6 @@ int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len, } -#ifdef CONFIG_LOGBUFFER - /* Prevent initrd from overwriting logbuffer */ - lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE); -#endif - debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n", initrd_high, initrd_copy_to_ram); |