This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: cec-ctl: --show-raw should show raw transmit data as well Author: Hans Verkuil <[email protected]> Date: Wed Sep 3 11:02:46 2025 +0200 Currently --show-raw only shows the raw hex values when receiving a message, but it should also show the raw hex values when transmitting. Fix this. Signed-off-by: Hans Verkuil <[email protected]> utils/cec-ctl/cec-ctl.cpp | 2 ++ 1 file changed, 2 insertions(+) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=fc46fc8771bff905204e7463ab03ed1f355436b1 diff --git a/utils/cec-ctl/cec-ctl.cpp b/utils/cec-ctl/cec-ctl.cpp index 3e810309936f..3241baac92d0 100644 --- a/utils/cec-ctl/cec-ctl.cpp +++ b/utils/cec-ctl/cec-ctl.cpp @@ -3281,6 +3281,8 @@ int main(int argc, char **argv) msg.flags |= options[OptRawMsg] ? CEC_MSG_FL_RAW : 0; msg.timeout = (msg.flags & CEC_MSG_FL_REPLY_VENDOR_ID) || msg.reply ? timeout : 0; cec_log_msg(&msg); + if (options[OptShowRaw]) + log_raw_msg(&msg); if (doioctl(&node, CEC_TRANSMIT, &msg)) continue; if (msg.rx_status & (CEC_RX_STATUS_OK | CEC_RX_STATUS_FEATURE_ABORT)) {
