From 718a069249e9813cd83f575d91ec6013f1f7552c Mon Sep 17 00:00:00 2001 From: Rajat Goyal Date: Wed, 12 Mar 2025 07:50:33 +0000 Subject: [PATCH] Placeholder for pal_mem_set_wb_executable Signed-off-by: Rajat Goyal Change-Id: Id1e34485e663dfeb301d26c405a918caaf172205 --- .../platform/pal_linux/files/common/src/pal_misc.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 5bc0b16..6efdc34 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; +} -- GitLab