[PATCH 03/21] MIPS: main_entry-pbl: remove unused variable
Denis Orlov
denorl2009 at gmail.com
Mon Jul 24 22:05:04 PDT 2023
For some reason we do set 'ttb' global variable, however we never end up
using it.
Signed-off-by: Denis Orlov <denorl2009 at gmail.com>
---
arch/mips/boot/main_entry-pbl.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/arch/mips/boot/main_entry-pbl.c b/arch/mips/boot/main_entry-pbl.c
index f75ec03851..78982fd995 100644
--- a/arch/mips/boot/main_entry-pbl.c
+++ b/arch/mips/boot/main_entry-pbl.c
@@ -20,16 +20,12 @@ unsigned long free_mem_end_ptr;
void pbl_main_entry(void *fdt, void *fdt_end, u32 ram_size);
-static unsigned long *ttb;
-
static void barebox_uncompress(void *compressed_start, unsigned int len)
{
/* set 128 KiB at the end of the MALLOC_BASE for early malloc */
free_mem_ptr = TEXT_BASE - SZ_128K;
free_mem_end_ptr = free_mem_ptr + SZ_128K;
- ttb = (void *)((free_mem_ptr - 0x4000) & ~0x3fff);
-
pbl_barebox_uncompress((void*)TEXT_BASE, compressed_start, len);
}
--
2.41.0
More information about the barebox
mailing list