This patch fixes the following checkpatch error:
-ERROR: spaces required around that '='

Signed-off-by: Kurt Kanzenbach <ly80t...@cip.cs.fau.de>
---
 drivers/staging/usbip/userspace/libsrc/names.c        |    2 +-
 drivers/staging/usbip/userspace/libsrc/usbip_common.c |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/usbip/userspace/libsrc/names.c 
b/drivers/staging/usbip/userspace/libsrc/names.c
index 8fe932d..8ee370b 100644
--- a/drivers/staging/usbip/userspace/libsrc/names.c
+++ b/drivers/staging/usbip/userspace/libsrc/names.c
@@ -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)) {
diff --git a/drivers/staging/usbip/userspace/libsrc/usbip_common.c 
b/drivers/staging/usbip/userspace/libsrc/usbip_common.c
index 98dc3df..b55df81 100644
--- a/drivers/staging/usbip/userspace/libsrc/usbip_common.c
+++ b/drivers/staging/usbip/userspace/libsrc/usbip_common.c
@@ -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;
        }
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to