projects
/
platform
/
upstream
/
v4l-utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d0729e
)
parse_usb.pl: Fix directions
author
Mauro Carvalho Chehab
<mchehab@redhat.com>
Tue, 7 Dec 2010 09:51:37 +0000
(07:51 -0200)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Tue, 7 Dec 2010 09:51:37 +0000
(07:51 -0200)
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
contrib/usb_parse/parse_usb.pl
patch
|
blob
|
history
diff --git
a/contrib/usb_parse/parse_usb.pl
b/contrib/usb_parse/parse_usb.pl
index
45fafd3
..
7d46bf0
100755
(executable)
--- a/
contrib/usb_parse/parse_usb.pl
+++ b/
contrib/usb_parse/parse_usb.pl
@@
-28,9
+28,9
@@
sub type_req($)
my $s;
if ($reqtype & 0x80) {
- $s = "WR ";
- } else {
$s = "RD ";
+ } else {
+ $s = "WR ";
}
if (($reqtype & 0x60) == 0x20) {
$s .= "CLAS ";