Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 316864
b: refs/heads/master
c: 7e54e97
h: refs/heads/master
v: v3
  • Loading branch information
Du, ChangbinX authored and Greg Kroah-Hartman committed Jun 13, 2012
1 parent 69117d9 commit 0723a6f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e714fad054e219b52eee17591d95d725888a95c4
refs/heads/master: 7e54e97812ccf59e71e002f9bd6d12bf4ab448b8
21 changes: 16 additions & 5 deletions trunk/tools/usb/testusb.c
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ int main (int argc, char **argv)
/* for easy use when hotplugging */
device = getenv ("DEVICE");

while ((c = getopt (argc, argv, "D:aA:c:g:hns:t:v:")) != EOF)
while ((c = getopt (argc, argv, "D:aA:c:g:hlns:t:v:")) != EOF)
switch (c) {
case 'D': /* device, if only one */
device = optarg;
Expand Down Expand Up @@ -468,10 +468,21 @@ int main (int argc, char **argv)
case 'h':
default:
usage:
fprintf (stderr, "usage: %s [-n] [-D dev | -a | -A usbfs-dir]\n"
"\t[-c iterations] [-t testnum]\n"
"\t[-s packetsize] [-g sglen] [-v vary]\n",
argv [0]);
fprintf (stderr,
"usage: %s [options]\n"
"Options:\n"
"\t-D dev only test specific device\n"
"\t-A usbfs-dir\n"
"\t-a test all recognized devices\n"
"\t-l loop forever(for stress test)\n"
"\t-t testnum only run specified case\n"
"\t-n no test running, show devices to be tested\n"
"Case arguments:\n"
"\t-c iterations default 1000\n"
"\t-s packetsize default 512\n"
"\t-g sglen default 32\n"
"\t-v vary default 512\n",
argv[0]);
return 1;
}
if (optind != argc)
Expand Down

0 comments on commit 0723a6f

Please sign in to comment.