From 55a6f4032246631a309f8608af5e822024664b59 Mon Sep 17 00:00:00 2001 From: Nick Saulnier Date: Mon, 26 Feb 2024 10:12:16 -0600 Subject: [PATCH] remove ti.ipc4.ping-pong reference Resolves LCPD-37524 ti-rpmsg-char: remove references to ti.ipc4.ping-pong The Linux userspace ti-rpmsg-char uses rpmsg_chrvdev by default. ti.ipc4.ping-pong will not work with ti-rpmsg-char without modifications to the rpmsg char driver. Remove references to ti.ipc4.ping-pong from the ti-rpmsg-char project to prevent confusion. Signed-off-by: Nick Saulnier --- examples/rpmsg_char_simple.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/rpmsg_char_simple.c b/examples/rpmsg_char_simple.c index 045e22f..5093d9c 100644 --- a/examples/rpmsg_char_simple.c +++ b/examples/rpmsg_char_simple.c @@ -113,8 +113,8 @@ int rpmsg_char_ping(int rproc_id, char *dev_name, unsigned int local_endpt, unsi printf("Created endpt device %s, fd = %d port = %d\n", eptdev_name, rcdev->fd, rcdev->endpt); - printf("Exchanging %d messages with rpmsg device ti.ipc4.ping-pong on rproc id %d ...\n\n", - num_msgs, rproc_id); + printf("Exchanging %d messages with rpmsg device %s on rproc id %d ...\n\n", + num_msgs, eptdev_name, rproc_id); for (i = 0; i < num_msgs; i++) { memset(packet_buf, 0, sizeof(packet_buf)); -- 2.39.2