From ae10c1333d546605cbb8034751a8edd76352c548 Mon Sep 17 00:00:00 2001 From: Ondrej Kosta Date: Mon, 10 Mar 2025 09:49:47 +0100 Subject: [PATCH] fix(esp_system): removed L2MEM buffer enable for P4 --- components/esp_system/port/cpu_start.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/components/esp_system/port/cpu_start.c b/components/esp_system/port/cpu_start.c index 82d635e757..bcad0dd632 100644 --- a/components/esp_system/port/cpu_start.c +++ b/components/esp_system/port/cpu_start.c @@ -404,11 +404,6 @@ void IRAM_ATTR call_start_cpu0(void) ); #endif -#if CONFIG_IDF_TARGET_ESP32P4 - // enable the buffer mode before any AHB burst happens, that's why we do it here - l2mem_ll_enable_ahb_burst_buffer(true, true); -#endif - #if SOC_BRANCH_PREDICTOR_SUPPORTED esp_cpu_branch_prediction_enable(); #endif