Skip to content

Commit 9aad6ad

Browse files
committed
ICBMsg fixes
1 parent c02bd7c commit 9aad6ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

subsys/ipc/ipc_service/backends/ipc_icbmsg.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1402,11 +1402,11 @@ const static struct ipc_service_backend backend_ops = {
14021402
PBUF_DEFINE(tx_icbmsg_pb_##i, \
14031403
GET_MEM_ADDR_INST(i, tx), \
14041404
GET_ICMSG_SIZE_INST(i, tx, rx), \
1405-
GET_CACHE_ALIGNMENT(i)); \
1405+
GET_CACHE_ALIGNMENT(i), 0, 0); \
14061406
PBUF_DEFINE(rx_icbmsg_pb_##i, \
14071407
GET_MEM_ADDR_INST(i, rx), \
14081408
GET_ICMSG_SIZE_INST(i, rx, tx), \
1409-
GET_CACHE_ALIGNMENT(i)); \
1409+
GET_CACHE_ALIGNMENT(i), 0, 0); \
14101410
static struct backend_data backend_data_##i = { \
14111411
.control_data = { \
14121412
.tx_pb = &tx_icbmsg_pb_##i, \

0 commit comments

Comments
 (0)