Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1343360
| From | Shuah Khan <shuahkh@osg.samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] selftests: media_dcevice_test fix to handle ioctl failure case |
| Date | 2016-02-25 18:50 +0100 |
| Message-ID | <r68d4-7e6-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Fix to print information returned by ioctl only when
it returns success.
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
---
tools/testing/selftests/media_tests/media_device_test.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tools/testing/selftests/media_tests/media_device_test.c b/tools/testing/selftests/media_tests/media_device_test.c
index a47880b..7a4d613 100644
--- a/tools/testing/selftests/media_tests/media_device_test.c
+++ b/tools/testing/selftests/media_tests/media_device_test.c
@@ -86,8 +86,9 @@ int main(int argc, char **argv)
ret = ioctl(fd, MEDIA_IOC_DEVICE_INFO, &mdi);
if (ret < 0)
printf("Media Device Info errno %s\n", strerror(errno));
- printf("Media device model %s driver %s\n",
- mdi.model, mdi.driver);
+ else
+ printf("Media device model %s driver %s\n",
+ mdi.model, mdi.driver);
sleep(10);
count++;
}
--
2.5.0
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] selftests: media_dcevice_test fix to handle ioctl failure case Shuah Khan <shuahkh@osg.samsung.com> - 2016-02-25 18:50 +0100
csiph-web