Staging: usbip: missing a blank lines after declarations
authorPawel Lebioda <pawel.lebioda89@gmail.com>
Wed, 14 May 2014 17:20:27 +0000 (19:20 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 May 2014 16:59:36 +0000 (01:59 +0900)
Fix "Missing a blank line after declaration" style problems
for all files in drivers/staging/usbip.

Signed-off-by: Pawel Lebioda <pawel.lebioda89@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/usbip/stub_dev.c
drivers/staging/usbip/stub_tx.c
drivers/staging/usbip/usbip_common.h
drivers/staging/usbip/userspace/libsrc/usbip_common.c
drivers/staging/usbip/userspace/src/usbip_attach.c
drivers/staging/usbip/userspace/src/usbipd.c
drivers/staging/usbip/vhci_hcd.c

index de692d7011a5cc4937298e5d3d697f519f0c9d04..51d0c718873814104bace1643ffca3feada9fec3 100644 (file)
@@ -99,6 +99,7 @@ static ssize_t store_sockfd(struct device *dev, struct device_attribute *attr,
 
        if (sockfd != -1) {
                int err;
+
                dev_info(dev, "stub up\n");
 
                spin_lock_irq(&sdev->ud.lock);
index 1622563823a39f23781320e88a8cbe71aedd9195..38fe551650c298e8cec34966befde6d2b52922ea 100644 (file)
@@ -218,6 +218,7 @@ static int stub_send_ret_submit(struct stub_device *sdev)
                         */
 
                        int i;
+
                        for (i = 0; i < urb->number_of_packets; i++) {
                                iov[iovnum].iov_base = urb->transfer_buffer +
                                        urb->iso_frame_desc[i].offset;
index f555d834f134a8a72e52751de62d3305bde27ecc..4da3866a037dd40af802550826436e00e132712c 100644 (file)
@@ -321,12 +321,14 @@ int usbip_event_happened(struct usbip_device *ud);
 static inline int interface_to_busnum(struct usb_interface *interface)
 {
        struct usb_device *udev = interface_to_usbdev(interface);
+
        return udev->bus->busnum;
 }
 
 static inline int interface_to_devnum(struct usb_interface *interface)
 {
        struct usb_device *udev = interface_to_usbdev(interface);
+
        return udev->devnum;
 }
 
index 238bf5bf7f4c6adcbd1b91fe71163055e6f043c0..05a7443b3835273c1803bded465d8787b9959557 100644 (file)
@@ -75,6 +75,7 @@ const char *usbip_speed_string(int num)
 void dump_usb_interface(struct usbip_usb_interface *uinf)
 {
        char buff[100];
+
        usbip_names_get_class(buff, sizeof(buff),
                        uinf->bInterfaceClass,
                        uinf->bInterfaceSubClass,
@@ -86,7 +87,6 @@ void dump_usb_device(struct usbip_usb_device *udev)
 {
        char buff[100];
 
-
        dbg("%-20s = %s", "path",  udev->path);
        dbg("%-20s = %s", "busid", udev->busid);
 
index 716a79e284c413d94c04a91a6ca2dbe2679efe76..d58a14dfc0947aec05ae3c6c419c21f113682c95 100644 (file)
@@ -56,6 +56,7 @@ static int record_connection(char *host, char *port, char *busid, int rhport)
                /* if VHCI_STATE_PATH exists, then it better be a directory */
                if (errno == EEXIST) {
                        struct stat s;
+
                        ret = stat(VHCI_STATE_PATH, &s);
                        if (ret < 0)
                                return -1;
index 2cae4ce48d11c1c1ff22c92784246c579cc6591f..b32047af809fe2b822d299c3a46f55233d02fc9c 100644 (file)
@@ -372,6 +372,7 @@ static int listen_all_addrinfo(struct addrinfo *ai_head, int sockfdlist[],
 
        for (ai = ai_head; ai && nsockfd < maxsockfd; ai = ai->ai_next) {
                int sock;
+
                addrinfo_to_text(ai, ai_buf, ai_buf_size);
                dbg("opening %s", ai_buf);
                sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
@@ -461,7 +462,9 @@ static void write_pid_file()
 {
        if (pid_file) {
                dbg("creating pid file %s", pid_file);
-               FILE *fp = fopen(pid_file, "w");
+               FILE *fp;
+
+               fp = fopen(pid_file, "w");
                if (!fp) {
                        err("pid_file: %s: %d (%s)",
                            pid_file, errno, strerror(errno));
@@ -602,6 +605,7 @@ int main(int argc, char *argv[])
        int daemonize = 0;
        int ipv4 = 0, ipv6 = 0;
        int opt, rc = -1;
+
        pid_file = NULL;
 
        usbip_use_stderr = 1;
index 70e17551943dc45bb49edfd4f3ba9e38a87df8fe..0007d30e45bd2ac408478b91d0188d6024a8cd6b 100644 (file)
@@ -635,6 +635,7 @@ static int vhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
 
        {
                int ret = 0;
+
                ret = usb_hcd_check_unlink_urb(hcd, urb, status);
                if (ret) {
                        spin_unlock(&the_controller->lock);
@@ -885,6 +886,7 @@ static int vhci_start(struct usb_hcd *hcd)
 
        for (rhport = 0; rhport < VHCI_NPORTS; rhport++) {
                struct vhci_device *vdev = &vhci->vdev[rhport];
+
                vhci_device_init(vdev);
                vdev->rhport = rhport;
        }