aboutsummaryrefslogtreecommitdiffstats
path: root/tools/usb
diff options
context:
space:
mode:
authorShuah Khan <shuahkh@osg.samsung.com>2018-02-27 15:23:55 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-03-09 09:16:19 -0800
commit0c60b14860fe5f7086d4d9458a7f23ea1d09fcfa (patch)
treeadc84133bac0b2a8f6710907ca35e4b1d25d5cbc /tools/usb
parentUSB: wusbcore: remove redundant re-assignment to pointer 'dev' (diff)
downloadlinux-dev-0c60b14860fe5f7086d4d9458a7f23ea1d09fcfa.tar.xz
linux-dev-0c60b14860fe5f7086d4d9458a7f23ea1d09fcfa.zip
usbip: tools usbip_attach: Fix cryptic error messages
Attach device error message is cryptic and useless. Fix it to be informative. Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com> Reviewed-by: Krzysztof Opasiak <k.opasiak@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/usb')
-rw-r--r--tools/usb/usbip/src/usbip_attach.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/usb/usbip/src/usbip_attach.c b/tools/usb/usbip/src/usbip_attach.c
index 7f07b2d50f59..f60738735398 100644
--- a/tools/usb/usbip/src/usbip_attach.c
+++ b/tools/usb/usbip/src/usbip_attach.c
@@ -195,7 +195,8 @@ static int attach_device(char *host, char *busid)
rhport = query_import_device(sockfd, busid);
if (rhport < 0) {
- err("query");
+ err("Attach request for Device %s. Is this device exported?",
+ busid);
return -1;
}