summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/entry.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/cpu/entry.c')
-rw-r--r--arch/arm/cpu/entry.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/cpu/entry.c b/arch/arm/cpu/entry.c
index 0b447de801..cc08d0ff7e 100644
--- a/arch/arm/cpu/entry.c
+++ b/arch/arm/cpu/entry.c
@@ -1,3 +1,5 @@
+// SPDX-License-Identifier: GPL-2.0-only
+
#include <types.h>
#include <asm/cache.h>
@@ -38,5 +40,8 @@ void NAKED __noreturn barebox_arm_entry(unsigned long membase,
unsigned long memsize, void *boarddata)
{
__barebox_arm_entry(membase, memsize, boarddata,
- arm_mem_stack_top(membase, membase + memsize));
+ arm_mem_stack_top(membase + memsize));
}
+
+void __noreturn barebox_pbl_entry(ulong, ulong, void *)
+ __alias(barebox_arm_entry);