cec: fix comment and inverted condition
Commit Message
The inverted condition caused received events to be replied to with
Feature Abort, even though they were the reply to an earlier transmit
that the caller was waiting for and so they would be processed and
Feature Abort was inappropriate.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
---
This patch sits on top of the CEC pull request.
---
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
@@ -1143,13 +1143,13 @@ static int cec_receive_notify(struct cec_adapter *adap, struct cec_msg *msg,
}
skip_processing:
- /* If this was not a reply, then we're done */
+ /* If this was a reply, then we're done */
if (is_reply)
return 0;
/*
* Send to the exclusive follower if there is one, otherwise send
- * to all followerd.
+ * to all followers.
*/
if (adap->cec_follower)
cec_queue_msg_fh(adap->cec_follower, msg);
@@ -1791,7 +1791,7 @@ static long cec_ioctl(struct file *filp, unsigned cmd, unsigned long arg)
} else if (cec_is_busy(adap, fh)) {
err = -EBUSY;
} else {
- if (block || !msg.reply)
+ if (!block || !msg.reply)
fh = NULL;
err = cec_transmit_msg_fh(adap, &msg, fh, block);
}