From 322a33596a5a7a6cbea8c1d1b7c42ac2a763993f Mon Sep 17 00:00:00 2001 From: Dong Wang Date: Mon, 6 Jul 2026 09:34:17 +0800 Subject: [PATCH] fix(iut): Removed __pinned from DMA iut case __pinned maros are removed in Zephyr code. Signed-off-by: Dong Wang --- zephyr/iut_test/test_zephyr/dma/test_dma_m2m.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zephyr/iut_test/test_zephyr/dma/test_dma_m2m.c b/zephyr/iut_test/test_zephyr/dma/test_dma_m2m.c index eb71e421967..233faafd84a 100644 --- a/zephyr/iut_test/test_zephyr/dma/test_dma_m2m.c +++ b/zephyr/iut_test/test_zephyr/dma/test_dma_m2m.c @@ -18,8 +18,8 @@ #define DT_DRV_COMPAT intel_sedi_dma -__pinned_noinit static char __aligned(64) tx_data[4096]; -__pinned_noinit static char __aligned(64) rx_data[4096]; +static char __aligned(64) tx_data[4096]; +static char __aligned(64) rx_data[4096]; static K_SEM_DEFINE(dma_sem, 0, 1); static int dma_status;