commit | 3a67d133ce05b8accbc85aee315ca4f847a517d6 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | Sun Jun 16 19:31:05 2024 +0200 |
committer | Tom Rini <trini@konsulko.com> | Wed Jun 19 13:10:23 2024 -0600 |
tree | de00c0e3fc620374e1794b7166671ba95493d566 | |
parent | 6d8c8db7608999fa3a9b6cab3cfa726078e49c96 [diff] |
efi_loader: avoid duplicate weak invalidate_icache_all() If multiple weak implementations of a weak function exist, it is unclear which one the linker should chose. cmd/cache.c already defines a weak invalidate_icache_all(). We don't need a call to invalidate_icache_all() on x86. ARM, RISC-V, and Sandbox provide an implementation. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>