Skip to content
Snippets Groups Projects
Commit e79d5093 authored by Pawel Osciak's avatar Pawel Osciak Committed by chrome-bot
Browse files

Rockchip: silence a debug message

Do not print a debug message with driver name on successful init.

BUG=None
TEST=veatest

Change-Id: Icd363472338bc48455a22366fa043d962d09e2ed
Reviewed-on: https://chromium-review.googlesource.com/381088


Commit-Ready: Pawel Osciak <posciak@chromium.org>
Tested-by: default avatarPawel Osciak <posciak@chromium.org>
Reviewed-by: default avatarKuang-che Wu <kcwu@chromium.org>
parent 1f86bdf6
Branches
No related tags found
No related merge requests found
......@@ -491,7 +491,7 @@ bool is_rockchip_encoder(int fd) {
int ret = SYS_IOCTL(fd, VIDIOC_QUERYCAP, &cap);
if (ret)
return false;
VLOG_FD(0, "driver name return %s\n", (char*)cap.card);
VLOG_FD(1, "driver name return %s\n", (char*)cap.card);
return strstr((const char *)cap.card, "-enc") != NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment