aboutsummaryrefslogtreecommitdiff
path: root/common/cli_hush.c
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@mailbox.org>2023-09-06 23:29:45 +0200
committerTom Rini <trini@konsulko.com>2023-09-14 10:42:24 -0400
commitbb7c4dcc833f64c1c550d5875c3ec670edcf3e5f (patch)
treea3640976c382ebd521a8c63067f0e789336b17ec /common/cli_hush.c
parent49c59dd5ca3078a135f85bcd1cb00e57029a1cde (diff)
downloadu-boot-bb7c4dcc833f64c1c550d5875c3ec670edcf3e5f.zip
u-boot-bb7c4dcc833f64c1c550d5875c3ec670edcf3e5f.tar.gz
u-boot-bb7c4dcc833f64c1c550d5875c3ec670edcf3e5f.tar.bz2
common: hush: Remove unused NEEDS_MANUAL_RELOC code bits
The last user of the NEEDS_MANUAL_RELOC has been removed in commit 26af162ac8f8 ("arch: m68k: Implement relocation") Remove now unused NEEDS_MANUAL_RELOC code. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'common/cli_hush.c')
-rw-r--r--common/cli_hush.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/common/cli_hush.c b/common/cli_hush.c
index cee8724..9cda97f 100644
--- a/common/cli_hush.c
+++ b/common/cli_hush.c
@@ -3305,19 +3305,6 @@ int parse_file_outer(void)
}
#ifdef __U_BOOT__
-#ifdef CONFIG_NEEDS_MANUAL_RELOC
-static void u_boot_hush_reloc(void)
-{
- unsigned long addr;
- struct reserved_combo *r;
-
- for (r=reserved_list; r<reserved_list+NRES; r++) {
- addr = (ulong) (r->literal) + gd->reloc_off;
- r->literal = (char *)addr;
- }
-}
-#endif
-
int u_boot_hush_start(void)
{
if (top_vars == NULL) {
@@ -3327,9 +3314,6 @@ int u_boot_hush_start(void)
top_vars->next = NULL;
top_vars->flg_export = 0;
top_vars->flg_read_only = 1;
-#ifdef CONFIG_NEEDS_MANUAL_RELOC
- u_boot_hush_reloc();
-#endif
}
return 0;
}