The first two patches fix issues relating to a CEC adapter being disabled while a transmit is still in progress at the hardware level. Unless the hardware is really disabled (i.e. loses power) the transmit should just continue in order to keep the hardware and framework state in sync, and to avoid half-written messages on the bus. The third patch fixes a mismatch between the API documentation and the actual code w.r.t. reporting the results of a non-blocking transmit. The fourth patch adds helpers to make it easier for both drivers and userspace to detect if the received message contains the result of a non-blocking transmit. The last two patches add new features that are needed for an out-of-tree CEC driver: https://git.linuxtv.org/hverkuil/media_tree.git/log/?h=extron This is still work in progress, so these patches will probably be included in the submission of that driver. Regards, Hans Hans Verkuil (6): cec: call enable_adap on s_log_addrs cec: abort if the current transmit was canceled cec: correctly pass on reply results cec.h: add cec_msg_recv_is_rx/tx_result helpers cec: add xfer_timeout_ms field cec: add optional adap_configured callback Documentation/driver-api/media/cec-core.rst | 13 ++- drivers/media/cec/core/cec-adap.c | 116 +++++++++++++------- drivers/media/cec/core/cec-api.c | 18 +-- drivers/media/cec/core/cec-core.c | 14 +++ include/media/cec.h | 10 ++ include/uapi/linux/cec.h | 20 ++++ 6 files changed, 131 insertions(+), 60 deletions(-) -- 2.34.1