diff options
author | Sven Eckelmann <sven@narfation.org> | 2012-03-26 18:22:45 +0400 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-05-13 21:06:41 +0400 |
commit | 679695813c0e29ecab666210752c9c0b4dd9f01c (patch) | |
tree | 7d52ad5be1f3a683ce511a9f3967ce8f1abd0157 /net/batman-adv/send.c | |
parent | 8c7bf248a318444accbe0c2c5db15bd727661606 (diff) | |
download | linux-679695813c0e29ecab666210752c9c0b4dd9f01c.tar.xz |
batman-adv: use shorter pr_warn instead of pr_warning
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv/send.c')
-rw-r--r-- | net/batman-adv/send.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/batman-adv/send.c b/net/batman-adv/send.c index 8e74d9763be3..f47299f22c68 100644 --- a/net/batman-adv/send.c +++ b/net/batman-adv/send.c @@ -45,8 +45,8 @@ int send_skb_packet(struct sk_buff *skb, struct hard_iface *hard_iface, goto send_skb_err; if (!(hard_iface->net_dev->flags & IFF_UP)) { - pr_warning("Interface %s is not up - can't send packet via that interface!\n", - hard_iface->net_dev->name); + pr_warn("Interface %s is not up - can't send packet via that interface!\n", + hard_iface->net_dev->name); goto send_skb_err; } |