Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: usbip: removed enumeration of comments

Enumerations for one comment makes no sense.
This is why this should be removed.

Signed-off-by: Kurt Kanzenbach <ly80toro@cip.cs.fau.de>
Signed-off-by: Stefan Reif <ke42caxa@cip.cs.fau.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Kurt Kanzenbach and committed by
Greg Kroah-Hartman
77178807 2663d79b

+3 -3
+1 -1
drivers/staging/usbip/stub_dev.c
··· 452 452 busid_priv->shutdown_busid = 1; 453 453 usbip_event_add(&busid_priv->sdev->ud, SDEV_EVENT_REMOVED); 454 454 455 - /* 2. wait for the stop of the event handler */ 455 + /* wait for the stop of the event handler */ 456 456 usbip_stop_eh(&busid_priv->sdev->ud); 457 457 } 458 458 }
+1 -1
drivers/staging/usbip/stub_rx.c
··· 552 552 553 553 memset(&pdu, 0, sizeof(pdu)); 554 554 555 - /* 1. receive a pdu header */ 555 + /* receive a pdu header */ 556 556 ret = usbip_recv(ud->tcp_socket, &pdu, sizeof(pdu)); 557 557 if (ret != sizeof(pdu)) { 558 558 dev_err(dev, "recv a header, %d\n", ret);
+1 -1
drivers/staging/usbip/vhci_rx.c
··· 206 206 207 207 memset(&pdu, 0, sizeof(pdu)); 208 208 209 - /* 1. receive a pdu header */ 209 + /* receive a pdu header */ 210 210 ret = usbip_recv(ud->tcp_socket, &pdu, sizeof(pdu)); 211 211 if (ret < 0) { 212 212 if (ret == -ECONNRESET)