diff --git a/acs-drv/files/platform/pal_linux/files/common/src/pal_misc.c b/acs-drv/files/platform/pal_linux/files/common/src/pal_misc.c index 5bc0b169f39ed22c2d7fe135433cdf03d98dfdfa..6efdc34f61c6dc5e64bf6dc0e966be6713d131bb 100644 --- a/acs-drv/files/platform/pal_linux/files/common/src/pal_misc.c +++ b/acs-drv/files/platform/pal_linux/files/common/src/pal_misc.c @@ -13,7 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . * - * Copyright (C) 2016-2023 Arm Limited + * Copyright (C) 2016-2025 Arm Limited * * Author: Prasanth Pulla * @@ -489,3 +489,15 @@ void pal_mem_free_aligned(void *buffer) kfree(((void **)buffer)[-1]); } + +/** + @brief Place holder for Changing memory attributes of memory region + to executable + * @param addr Address of the buffer + * @param size size in bytes + * @return if FAILURE 1 +**/ +uint32_t pal_mem_set_wb_executable(void *addr, uint32_t size) +{ + return 0; +}