This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: Print a generic message for the URB's that aren't currently parsed Author: Mauro Carvalho Chehab <[email protected]> Date: Mon Nov 8 13:41:31 2010 -0200 Signed-off-by: Mauro Carvalho Chehab <[email protected]> contrib/cx231xx/parse_cx231xx.pl | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=5b47eff969f567cd2069a33d16d7d0b413bd3747 diff --git a/contrib/cx231xx/parse_cx231xx.pl b/contrib/cx231xx/parse_cx231xx.pl index e6f7905..d85a641 100755 --- a/contrib/cx231xx/parse_cx231xx.pl +++ b/contrib/cx231xx/parse_cx231xx.pl @@ -118,9 +118,11 @@ while (<>) { parse_i2c($reqtype, $req, $wvalue, $windex, $wlen, $payload); } elsif ($req < 3) { parse_i2c($reqtype, $req, $wvalue, $windex, $wlen, $payload); - } -# if ($req >= 8 && $req <= 0xb) { + } elsif ($req >= 8 && $req <= 0xb) { parse_gpio($reqtype, $req, $wvalue, $windex, $wlen, $payload); -# } + } else { + printf("Reqtype: %3d, Req %3d, wValue: 0x%04x, wIndex 0x%04x, wlen %d: %s\n", + $reqtype, $req, $wvalue, $windex, $wlen, $payload); + } } } _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
