]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
staging: usbip: userspace: libsrc: spaces required around that '='
authorKurt Kanzenbach <ly80toro@cip.cs.fau.de>
Fri, 22 Feb 2013 11:13:27 +0000 (12:13 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 11 Mar 2013 16:45:28 +0000 (09:45 -0700)
This patch fixes the following checkpatch error:
-ERROR: spaces required around that '='

Signed-off-by: Kurt Kanzenbach <ly80toro@cip.cs.fau.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/usbip/userspace/libsrc/names.c
drivers/staging/usbip/userspace/libsrc/usbip_common.c

index 8fe932d996beed5f15cfd8851a4ae6c5c92d7d46..8ee370bb9b9085cfca333b7bd253b2613d54625c 100644 (file)
@@ -472,7 +472,7 @@ static void parse(FILE *f)
 {
        char buf[512], *cp;
        unsigned int linectr = 0;
-       int lastvendor = -1, lastclass = -1, lastsubclass = -1, lasthut=-1, lastlang=-1;
+       int lastvendor = -1, lastclass = -1, lastsubclass = -1, lasthut = -1, lastlang = -1;
        unsigned int u;
 
        while (fgets(buf, sizeof(buf), f)) {
index 98dc3df5e1a6e4a6a0e8c2fed8f0306a2a722167..b55df81a24f5ac0732478d503895e0a3f33144b3 100644 (file)
@@ -44,7 +44,7 @@ static struct portst_string portst_strings[] = {
 
 const char *usbip_status_string(int32_t status)
 {
-       for (int i=0; portst_strings[i].desc != NULL; i++)
+       for (int i = 0; portst_strings[i].desc != NULL; i++)
                if (portst_strings[i].num == status)
                        return portst_strings[i].desc;
 
@@ -53,7 +53,7 @@ const char *usbip_status_string(int32_t status)
 
 const char *usbip_speed_string(int num)
 {
-       for (int i=0; speed_strings[i].speed != NULL; i++)
+       for (int i = 0; speed_strings[i].speed != NULL; i++)
                if (speed_strings[i].num == num)
                        return speed_strings[i].desc;
 
@@ -172,7 +172,7 @@ int read_attr_speed(struct sysfs_device *dev)
 err:
        sysfs_close_attribute(attr);
 
-       for (int i=0; speed_strings[i].speed != NULL; i++) {
+       for (int i = 0; speed_strings[i].speed != NULL; i++) {
                if (!strcmp(speed, speed_strings[i].speed))
                        return speed_strings[i].num;
        }