aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil-cisco@xs4all.nl>2021-10-08 16:34:30 +0200
committerHans Verkuil <hverkuil-cisco@xs4all.nl>2021-10-08 16:34:30 +0200
commit3725b644a252bf956a92d42455255f9838468905 (patch)
tree3e20ea872dd08310456430dcfaa40628173a3938
parentdfc6a9d5500a0eadc6c773fdc8f280c064fef5f2 (diff)
downloadv4l-utils-3725b644a252bf956a92d42455255f9838468905.tar.gz
cec-compliance: improve confusing message
"Device is woken up" suggests that the device has just woken up, but what is actually meant is: "Wait for device to wake up". Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
-rw-r--r--utils/cec-compliance/cec-test-power.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/cec-compliance/cec-test-power.cpp b/utils/cec-compliance/cec-test-power.cpp
index a9f3cd77..7b10096b 100644
--- a/utils/cec-compliance/cec-test-power.cpp
+++ b/utils/cec-compliance/cec-test-power.cpp
@@ -502,7 +502,7 @@ static int standby_resume_wakeup(struct node *node, unsigned me, unsigned la, bo
unsigned unresponsive_cnt = 0;
- announce("Device is woken up");
+ announce("Wait for device to wake up");
fail_on_test(!poll_stable_power_status(node, me, la, CEC_OP_POWER_STATUS_ON, unresponsive_cnt));
fail_on_test(interactive && !question("Is the device in On state?"));
@@ -541,7 +541,7 @@ static int standby_resume_wakeup_view_on(struct node *node, unsigned me, unsigne
if (ret)
return ret;
- announce("Device is woken up");
+ announce("Wait for device to wake up");
unresponsive_cnt = 0;
fail_on_test(!poll_stable_power_status(node, me, la, CEC_OP_POWER_STATUS_ON, unresponsive_cnt));
fail_on_test(interactive && !question("Is the device in On state?"));