Skip to content

Commit

Permalink
staging: usbip: removed enumeration of comments
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kurt Kanzenbach authored and Greg Kroah-Hartman committed Apr 5, 2013
1 parent 2663d79 commit 7717880
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/usbip/stub_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ static void shutdown_busid(struct bus_id_priv *busid_priv)
busid_priv->shutdown_busid = 1;
usbip_event_add(&busid_priv->sdev->ud, SDEV_EVENT_REMOVED);

/* 2. wait for the stop of the event handler */
/* wait for the stop of the event handler */
usbip_stop_eh(&busid_priv->sdev->ud);
}
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/usbip/stub_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ static void stub_rx_pdu(struct usbip_device *ud)

memset(&pdu, 0, sizeof(pdu));

/* 1. receive a pdu header */
/* receive a pdu header */
ret = usbip_recv(ud->tcp_socket, &pdu, sizeof(pdu));
if (ret != sizeof(pdu)) {
dev_err(dev, "recv a header, %d\n", ret);
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/usbip/vhci_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ static void vhci_rx_pdu(struct usbip_device *ud)

memset(&pdu, 0, sizeof(pdu));

/* 1. receive a pdu header */
/* receive a pdu header */
ret = usbip_recv(ud->tcp_socket, &pdu, sizeof(pdu));
if (ret < 0) {
if (ret == -ECONNRESET)
Expand Down

0 comments on commit 7717880

Please sign in to comment.