diff mbox

[U-Boot,1/9] board_f: Add relocate_code stub

Message ID 1463660815-26050-2-git-send-email-ysato@users.sourceforge.jp
State Rejected
Delegated to: Nobuhiro Iwamatsu
Headers show

Commit Message

Yoshinori Sato May 19, 2016, 12:26 p.m. UTC
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
---
 common/board_f.c | 5 +++++
 1 file changed, 5 insertions(+)
diff mbox

Patch

diff --git a/common/board_f.c b/common/board_f.c
index 109025a..bf768d1 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -826,6 +826,11 @@  __weak int arch_cpu_init_dm(void)
 	return 0;
 }
 
+__weak void relocate_code(ulong sp, gd_t *new_gd, ulong reloc)
+{
+	for(;;);
+}
+
 static init_fnc_t init_sequence_f[] = {
 #ifdef CONFIG_SANDBOX
 	setup_ram_buf,