Skip to content

Commit 8754a75

Browse files
Shuah KhanZhengShunQian
authored andcommitted
usbip: usbip_host: refine probe and disconnect debug msgs to be useful
commit 28b68ac upstream. Refine probe and disconnect debug msgs to be useful and say what is in progress. Signed-off-by: Shuah Khan <[email protected]> Cc: stable <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 2f82913 commit 8754a75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/usb/usbip/stub_dev.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ static int stub_probe(struct usb_device *udev)
316316
struct bus_id_priv *busid_priv;
317317
int rc;
318318

319-
dev_dbg(&udev->dev, "Enter\n");
319+
dev_dbg(&udev->dev, "Enter probe\n");
320320

321321
/* check we should claim or not by busid_table */
322322
busid_priv = get_busid_priv(udev_busid);
@@ -419,7 +419,7 @@ static void stub_disconnect(struct usb_device *udev)
419419
struct bus_id_priv *busid_priv;
420420
int rc;
421421

422-
dev_dbg(&udev->dev, "Enter\n");
422+
dev_dbg(&udev->dev, "Enter disconnect\n");
423423

424424
busid_priv = get_busid_priv(udev_busid);
425425
if (!busid_priv) {

0 commit comments

Comments
 (0)