diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-04-17 14:15:24 -0700 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2020-04-20 14:40:14 +0200 |
commit | ce8ed12c95eeb628febfff04abe9fae4d6f410bf (patch) | |
tree | 698d0ccf0dbbc229d1410b2842c5b30ae6ef421a /utils/cec-compliance/cec-test-power.cpp | |
parent | 06dc2b0c0e9705d5d4607c89dfc7decf714a68d6 (diff) |
treewide: do not use return after else
Found with clang-tidy's readability-else-after-return
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: split '} if () {' into two lines]
[hverkuil-cisco@xs4all.nl: split 'if () continue; else return -1;' into two lines]
Diffstat (limited to 'utils/cec-compliance/cec-test-power.cpp')
-rw-r--r-- | utils/cec-compliance/cec-test-power.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/cec-compliance/cec-test-power.cpp b/utils/cec-compliance/cec-test-power.cpp index 90a62ddc..2758c36d 100644 --- a/utils/cec-compliance/cec-test-power.cpp +++ b/utils/cec-compliance/cec-test-power.cpp @@ -166,8 +166,8 @@ static int one_touch_play_view_on_wakeup(struct node *node, unsigned me, unsigne if (interactive) return 0; - else - return OK_PRESUMED; + + return OK_PRESUMED; } static int one_touch_play_image_view_on_wakeup(struct node *node, unsigned me, unsigned la, bool interactive) @@ -203,8 +203,8 @@ static int one_touch_play_view_on_change(struct node *node, unsigned me, unsigne if (interactive) return 0; - else - return OK_PRESUMED; + + return OK_PRESUMED; } static int one_touch_play_image_view_on_change(struct node *node, unsigned me, unsigned la, bool interactive) |