below is code snippet of the modified function to send data from cortex-M33 on rpmsg void app_task(void *param) { volatile uint32_t remote_addr; void *rx_buf; uint32_t len; int32_t result; void *tx_buf; uint32_t size; #ifdef MCMGR_USED uint32_t startupData; /* Get the sta...
Commit 8a228ec ("rpmsg: Indirection table for rpmsg_endpoint operations") has made the rpmsg_send_offchannel_raw() a static function and local to the virtio_rpmsg_bus module, but has not dropped the corresponding EXPORT_SYMBOL. Fix this. Signed-off-by: Suman Anna Signed-off-by: Bjorn...
rpmsg: virtio_rpmsg_bus: fix export of rpmsg_send_offchannel_raw() Commit