aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil-cisco@xs4all.nl>2021-07-01 07:59:21 +0200
committerHans Verkuil <hverkuil-cisco@xs4all.nl>2021-07-01 07:59:21 +0200
commitc4e0bd71a7f6a737a98f8eef86c417e61051240f (patch)
tree6b62989afb28924d6f0e13b1cfad3d088598e3a4
parent6daa887669990e3c2d4c9e7a8f8e879aa3169c43 (diff)
downloadv4l-utils-c4e0bd71a7f6a737a98f8eef86c417e61051240f.tar.gz
cec-ctl: free signal time -> signal free time
Use the same phrase as in the CEC specification. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
-rw-r--r--utils/cec-ctl/cec-pin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/cec-ctl/cec-pin.cpp b/utils/cec-ctl/cec-pin.cpp
index 905592de..f890d2a0 100644
--- a/utils/cec-ctl/cec-pin.cpp
+++ b/utils/cec-ctl/cec-pin.cpp
@@ -358,7 +358,7 @@ void log_event_pin(bool is_high, __u64 ev_ts, bool show)
verb_printf("1 -> 1 (%.2f ms)\n", delta);
} else if (was_high && state == CEC_ST_IDLE) {
if (bit_periods > 1 && bit_periods < 10)
- verb_printf("1 -> 0 (was 1 for %.2f ms, free signal time = %.1f bit periods)\n",
+ verb_printf("1 -> 0 (was 1 for %.2f ms, signal free time = %.1f bit periods)\n",
delta, bit_periods);
else
verb_printf("1 -> 0 (was 1 for %.2f ms)\n", delta);
@@ -387,7 +387,7 @@ void log_event_pin(bool is_high, __u64 ev_ts, bool show)
verb_printf("0 -> 1\n");
}
} else if (!is_high && bit_periods > 1 && bit_periods < 10 && show) {
- printf("%s: free signal time = %.1f bit periods\n",
+ printf("%s: signal free time = %.1f bit periods\n",
ts2s(ts).c_str(), bit_periods);
}
cec_pin_debug(ev_ts, (ev_ts - last_ts) / 1000, was_high, is_high, show);