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: log the new cec_log_addrs flags Author: Hans Verkuil <hans.verk...@cisco.com> Date: Wed Nov 2 13:10:25 2016 +0100 Log the new CEC_LOG_ADDRS_FL_ALLOW_RC_PASSTHRU and CEC_LOG_ADDRS_FL_CDC_ONLY flags. Signed-off-by: Hans Verkuil <hans.verk...@cisco.com> utils/cec-compliance/cec-compliance.cpp | 4 ++++ utils/cec-ctl/cec-ctl.cpp | 4 ++++ utils/cec-follower/cec-follower.cpp | 4 ++++ 3 files changed, 12 insertions(+) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=35a5299801ce9868a027ab429a5302f1c70d6350 diff --git a/utils/cec-compliance/cec-compliance.cpp b/utils/cec-compliance/cec-compliance.cpp index 7a524ebd413d..bd96d968e21b 100644 --- a/utils/cec-compliance/cec-compliance.cpp +++ b/utils/cec-compliance/cec-compliance.cpp @@ -187,6 +187,10 @@ static std::string laflags2s(unsigned flags) s = "("; if (flags & CEC_LOG_ADDRS_FL_ALLOW_UNREG_FALLBACK) s += "Allow Fallback to Unregistered, "; + if (flags & CEC_LOG_ADDRS_FL_ALLOW_RC_PASSTHRU) + s += "Allow RC Passthrough, "; + if (flags & CEC_LOG_ADDRS_FL_CDC_ONLY) + s += "CDC-Only, "; if (s.length()) s.erase(s.length() - 2, 2); return s + ")"; diff --git a/utils/cec-ctl/cec-ctl.cpp b/utils/cec-ctl/cec-ctl.cpp index ce0474f4547f..dbb44635dd3a 100644 --- a/utils/cec-ctl/cec-ctl.cpp +++ b/utils/cec-ctl/cec-ctl.cpp @@ -958,6 +958,10 @@ static std::string laflags2s(unsigned flags) s = "("; if (flags & CEC_LOG_ADDRS_FL_ALLOW_UNREG_FALLBACK) s += "Allow Fallback to Unregistered, "; + if (flags & CEC_LOG_ADDRS_FL_ALLOW_RC_PASSTHRU) + s += "Allow RC Passthrough, "; + if (flags & CEC_LOG_ADDRS_FL_CDC_ONLY) + s += "CDC-Only, "; if (s.length()) s.erase(s.length() - 2, 2); return s + ")"; diff --git a/utils/cec-follower/cec-follower.cpp b/utils/cec-follower/cec-follower.cpp index 766ed1ee03a4..c5ebb04b6018 100644 --- a/utils/cec-follower/cec-follower.cpp +++ b/utils/cec-follower/cec-follower.cpp @@ -320,6 +320,10 @@ static std::string laflags2s(unsigned flags) s = "("; if (flags & CEC_LOG_ADDRS_FL_ALLOW_UNREG_FALLBACK) s += "Allow Fallback to Unregistered, "; + if (flags & CEC_LOG_ADDRS_FL_ALLOW_RC_PASSTHRU) + s += "Allow RC Passthrough, "; + if (flags & CEC_LOG_ADDRS_FL_CDC_ONLY) + s += "CDC-Only, "; if (s.length()) s.erase(s.length() - 2, 2); return s + ")"; _______________________________________________ linuxtv-commits mailing list linuxtv-commits@linuxtv.org https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits