From 6745b22a18733425fd0b9d28c744cdc414a8d7a9 Mon Sep 17 00:00:00 2001 From: Antony Pavlov Date: Wed, 15 Jan 2020 14:28:28 +0300 Subject: MIPS: actually use CONFIG_MIPS_RELOCATION_TABLE_SIZE The commit 28ed10d6a67c9 ("MIPS: relocation: add relocation support") introduce the Kconfig CONFIG_MIPS_RELOCATION_TABLE_SIZE parameter but it is never used. Signed-off-by: Antony Pavlov Signed-off-by: Sascha Hauer --- arch/mips/lib/barebox.lds.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/mips/lib') diff --git a/arch/mips/lib/barebox.lds.S b/arch/mips/lib/barebox.lds.S index e96c3bf6e2..693a778980 100644 --- a/arch/mips/lib/barebox.lds.S +++ b/arch/mips/lib/barebox.lds.S @@ -54,7 +54,7 @@ SECTIONS .data.reloc : { __rel_start = .; BYTE(0x0) - . += (32 * 1024) - 1; + . += CONFIG_MIPS_RELOCATION_TABLE_SIZE - 1; } _end = .; -- cgit v1.2.3