aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/bonding/bond_ipv6.c
diff options
context:
space:
mode:
authorJiri Pirko <jpirko@redhat.com>2009-08-13 04:11:52 +0000
committerDavid S. Miller <davem@davemloft.net>2009-08-13 16:43:32 -0700
commite5e2a8fd8358d1b3a2c51c3248edee72e4194703 (patch)
tree5fcbbd0d82b370446dd2745296caa37b374ecf03 /drivers/net/bonding/bond_ipv6.c
parent26ced1e4aa181c01379b0b7ef156a29c000d1f8c (diff)
bonding: wipe out printk's
I did not introduce new lines over 80 chars. I even eliminated some of them. Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_ipv6.c')
-rw-r--r--drivers/net/bonding/bond_ipv6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bonding/bond_ipv6.c b/drivers/net/bonding/bond_ipv6.c
index 0d73bf5ac5a..83921abae12 100644
--- a/drivers/net/bonding/bond_ipv6.c
+++ b/drivers/net/bonding/bond_ipv6.c
@@ -79,14 +79,14 @@ static void bond_na_send(struct net_device *slave_dev,
ND_OPT_TARGET_LL_ADDR);
if (!skb) {
- printk(KERN_ERR DRV_NAME ": NA packet allocation failed\n");
+ pr_err(DRV_NAME ": NA packet allocation failed\n");
return;
}
if (vlan_id) {
skb = vlan_put_tag(skb, vlan_id);
if (!skb) {
- printk(KERN_ERR DRV_NAME ": failed to insert VLAN tag\n");
+ pr_err(DRV_NAME ": failed to insert VLAN tag\n");
return;
}
}