samples: use address translation ops in openamp_rsc_table sample

Update openamp_rsc_table sample to use `metal_io_ops` for address
translation, if configured.

Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com>
This commit is contained in:
Iuliana Prodan 2025-06-20 17:20:30 +03:00 committed by Dan Kalowsky
parent 0300c88380
commit cae6321cd8

View File

@ -17,6 +17,7 @@
#include <metal/sys.h>
#include <metal/io.h>
#include <resource_table.h>
#include <addr_translation.h>
#ifdef CONFIG_SHELL_BACKEND_RPMSG
#include <zephyr/shell/shell_rpmsg.h>
@ -159,7 +160,7 @@ int platform_init(void)
/* declare shared memory region */
metal_io_init(shm_io, (void *)SHM_START_ADDR, &shm_physmap,
SHM_SIZE, -1, 0, NULL);
SHM_SIZE, -1, 0, addr_translation_get_ops(shm_physmap));
/* declare resource table region */
rsc_table_get(&rsc_table, &rsc_size);