usbip: tools: add usage of device mode in usbip_list.c

The option '-d/--device' was implemented in 'usbip list' but not
shown in usage. Hence this commit adds this option to usage.

Acked-by: Shuah Khan <skhan@linuxfoundation.org>
Signed-off-by: Hongren Zheng <i@zenithal.me>
Link: https://lore.kernel.org/r/YFrwq75Uyef3c9gz@Sun
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Hongren Zheng (Zenithal) 2021-03-24 15:56:27 +08:00 коммит произвёл Greg Kroah-Hartman
Родитель b737eecd4a
Коммит a58977b2f8
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -33,7 +33,8 @@ static const char usbip_list_usage_string[] =
"usbip list [-p|--parsable] <args>\n" "usbip list [-p|--parsable] <args>\n"
" -p, --parsable Parsable list format\n" " -p, --parsable Parsable list format\n"
" -r, --remote=<host> List the exportable USB devices on <host>\n" " -r, --remote=<host> List the exportable USB devices on <host>\n"
" -l, --local List the local USB devices\n"; " -l, --local List the local USB devices\n"
" -d, --device List the local USB gadgets bound to usbip-vudc\n";
void usbip_list_usage(void) void usbip_list_usage(void)
{ {