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

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>
This commit is contained in:
Kurt Kanzenbach 2013-02-22 12:13:27 +01:00 committed by Greg Kroah-Hartman
parent 5af7746f47
commit b8ab0f2bee
2 changed files with 4 additions and 4 deletions

View 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)) {

View 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;
}