From 930000d3b3528bf9eb3ae397b76c09ce788753ef Mon Sep 17 00:00:00 2001 From: Marek Matej Date: Tue, 10 Dec 2024 14:39:56 +0100 Subject: [PATCH] soc: espressif: Rename common/psram.c Rename psram.c -> esp_psram.c to align with the naming conventions. Signed-off-by: Marek Matej --- soc/espressif/common/CMakeLists.txt | 2 +- soc/espressif/common/{psram.c => esp_psram.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename soc/espressif/common/{psram.c => esp_psram.c} (100%) diff --git a/soc/espressif/common/CMakeLists.txt b/soc/espressif/common/CMakeLists.txt index d5e0a563412bc4..4cd6217126aa9f 100644 --- a/soc/espressif/common/CMakeLists.txt +++ b/soc/espressif/common/CMakeLists.txt @@ -4,6 +4,6 @@ zephyr_include_directories(include) if(NOT CONFIG_MCUBOOT AND NOT CONFIG_SOC_ESP32_APPCPU AND NOT CONFIG_SOC_ESP32S3_APPCPU) - zephyr_sources_ifdef(CONFIG_ESP_SPIRAM psram.c) zephyr_sources_ifdef(CONFIG_ESP_HEAP_RUNTIME esp_heap_runtime.c) + zephyr_sources_ifdef(CONFIG_ESP_SPIRAM esp_psram.c) endif() diff --git a/soc/espressif/common/psram.c b/soc/espressif/common/esp_psram.c similarity index 100% rename from soc/espressif/common/psram.c rename to soc/espressif/common/esp_psram.c