diff options
author | Simon Glass <sjg@chromium.org> | 2025-06-04 07:09:02 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-04 08:15:12 -0600 |
commit | 4ef863f2d69417df2bd88358bd79a51995ac5bc5 (patch) | |
tree | 42bdb81fe79e1c0dfc87f25e2e526ece315f0ff0 | |
parent | fdc0dcbb2c84c4c63fc10315bcf042575198610d (diff) |
x86: Correct condition for init_cache_f_r()
The condition here is reversed, which makes link and coral very slow,
leading to lab failures.
Fixes 6c171f7a184 ("common: board: make initcalls static")
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org>
-rw-r--r-- | common/board_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_f.c b/common/board_f.c index bff465d9cb2..c8a612d6070 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -1079,7 +1079,7 @@ void board_init_f(ulong boot_flags) */ static void initcall_run_f_r(void) { -#if CONFIG_IS_ENABLED(X86_64) +#if !CONFIG_IS_ENABLED(X86_64) INITCALL(init_cache_f_r); #endif } |