Skip to content

Commit

Permalink
bonding: Coding style: break line after the if condition
Browse files Browse the repository at this point in the history
From: Wagner Ferenc <wferi@niif.hu>

Adhere to coding style: break line after the if condition

Signed-off-by: Ferenc Wagner <wferi@niif.hu>
Acked-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Wagner Ferenc authored and Jeff Garzik committed Dec 7, 2007
1 parent b884366 commit 1dcdcd6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions drivers/net/bonding/bond_sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ static ssize_t bonding_show_bonds(struct class *cls, char *buf)
}
res += sprintf(buf + res, "%s ", bond->dev->name);
}
if (res) buf[res-1] = '\n'; /* eat the leftover space */
if (res)
buf[res-1] = '\n'; /* eat the leftover space */
up_read(&(bonding_rwsem));
return res;
}
Expand Down Expand Up @@ -239,7 +240,8 @@ static ssize_t bonding_show_slaves(struct device *d,
res += sprintf(buf + res, "%s ", slave->dev->name);
}
read_unlock(&bond->lock);
if (res) buf[res-1] = '\n'; /* eat the leftover space */
if (res)
buf[res-1] = '\n'; /* eat the leftover space */
return res;
}

Expand Down Expand Up @@ -705,7 +707,8 @@ static ssize_t bonding_show_arp_targets(struct device *d,
res += sprintf(buf + res, "%u.%u.%u.%u ",
NIPQUAD(bond->params.arp_targets[i]));
}
if (res) buf[res-1] = '\n'; /* eat the leftover space */
if (res)
buf[res-1] = '\n'; /* eat the leftover space */
return res;
}

Expand Down

0 comments on commit 1dcdcd6

Please sign in to comment.