]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
staging: usbip: removed enumeration of comments
authorKurt Kanzenbach <ly80toro@cip.cs.fau.de>
Thu, 4 Apr 2013 14:03:05 +0000 (16:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 5 Apr 2013 21:22:50 +0000 (14:22 -0700)
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>
drivers/staging/usbip/stub_dev.c
drivers/staging/usbip/stub_rx.c
drivers/staging/usbip/vhci_rx.c

index 0a70b8ea920959201626008cd8eddc95da704fd5..471cd2a224f325f6f750a2de111274e5d6db9cf3 100644 (file)
@@ -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);
        }
 }
index 9fc62b35e80b32f6bdedbe8c3d68c2d94952cc74..db48a789d3085a4a53aee4624eecf5692632f5b8 100644 (file)
@@ -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);
index 50d6fd5bb70d5a90efb647c64b4faacddc59ed28..d07fcb5ee93a8677c20aa63dd5eff6771b14c2f6 100644 (file)
@@ -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)