Commit b8ab0f2b authored by Kurt Kanzenbach's avatar Kurt Kanzenbach Committed by Greg Kroah-Hartman

staging: usbip: userspace: libsrc: spaces required around that '='

This patch fixes the following checkpatch error:
-ERROR: spaces required around that '='
Signed-off-by: default avatarKurt Kanzenbach <ly80toro@cip.cs.fau.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5af7746f
......@@ -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)) {
......
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment