diff options
author | Joe Perches <joe@perches.com> | 2014-02-16 00:57:04 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-17 06:29:23 +0100 |
commit | 91565ebbcc5aea69d4d6cb3832f52da03dbd44b6 (patch) | |
tree | 0cf8f7fa8df59e766ed7749d2a201cb08de8b635 /drivers/net/bonding/bond_alb.c | |
parent | caif: delete unnecessary field initialization (diff) | |
download | linux-91565ebbcc5aea69d4d6cb3832f52da03dbd44b6.tar.xz linux-91565ebbcc5aea69d4d6cb3832f52da03dbd44b6.zip |
bonding: Convert pr_warning to pr_warn, neatening
Use more current logging style.
Coalesce formats, realign arguments, drop unnecessary periods.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_alb.c')
-rw-r--r-- | drivers/net/bonding/bond_alb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond_alb.c index a21286088821..e9f0a98f3df5 100644 --- a/drivers/net/bonding/bond_alb.c +++ b/drivers/net/bonding/bond_alb.c @@ -1243,9 +1243,9 @@ static int alb_handle_addr_collision_on_attach(struct bonding *bond, struct slav if (free_mac_slave) { alb_set_slave_mac_addr(slave, free_mac_slave->perm_hwaddr); - pr_warning("%s: Warning: the hw address of slave %s is in use by the bond; giving it the hw address of %s\n", - bond->dev->name, slave->dev->name, - free_mac_slave->dev->name); + pr_warn("%s: Warning: the hw address of slave %s is in use by the bond; giving it the hw address of %s\n", + bond->dev->name, slave->dev->name, + free_mac_slave->dev->name); } else if (has_bond_addr) { pr_err("%s: Error: the hw address of slave %s is in use by the bond; couldn't find a slave with a free hw address to give it (this should not have happened)\n", |