aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@mailbox.org>2023-09-06 23:29:44 +0200
committerTom Rini <trini@konsulko.com>2023-09-14 10:42:24 -0400
commit49c59dd5ca3078a135f85bcd1cb00e57029a1cde (patch)
treeda3c9f25332fb05ff8e0aee2e9b4d247dd1d6fe5 /lib
parent99970b557b234eedd7ac55f02c905905f8017420 (diff)
downloadu-boot-49c59dd5ca3078a135f85bcd1cb00e57029a1cde.tar.gz
common: board_r: 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 'lib')
-rw-r--r--lib/initcall.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/initcall.c b/lib/initcall.c
index 480490ea23..33b7d761dc 100644
--- a/lib/initcall.c
+++ b/lib/initcall.c
@@ -97,13 +97,3 @@ int initcall_run_list(const init_fnc_t init_sequence[])
return 0;
}
-
-void initcall_manual_reloc(init_fnc_t init_sequence[])
-{
- init_fnc_t *ptr;
-
- for (ptr = init_sequence; *ptr; ptr++) {
- if (!initcall_is_event(*ptr))
- MANUAL_RELOC(*ptr);
- }
-}