Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e3e73aa5 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "media: cec: cec_transmit_attempt_done: ignore CEC_TX_STATUS_MAX_RETRIES"

parents 12bfefbc fcfdfb16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -544,7 +544,7 @@ EXPORT_SYMBOL_GPL(cec_transmit_done);

void cec_transmit_attempt_done(struct cec_adapter *adap, u8 status)
{
	switch (status) {
	switch (status & ~CEC_TX_STATUS_MAX_RETRIES) {
	case CEC_TX_STATUS_OK:
		cec_transmit_done(adap, status, 0, 0, 0, 0);
		return;