diff options
author | Joe Perches <joe@perches.com> | 2014-09-09 21:17:28 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-10 12:40:10 -0700 |
commit | ef423a410943dab9198ec1d7d9558cb53a9569cc (patch) | |
tree | fbb8ecefe8839ea5597606f253c51f27a2fff7cd /net/atm/clip.c | |
parent | 6618ec6f742955dcddb71091ec461fbd5fec9fd3 (diff) | |
download | linux-ef423a410943dab9198ec1d7d9558cb53a9569cc.tar.bz2 |
atm: Convert pr_warning to pr_warn
Use the more common pr_warn.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm/clip.c')
-rw-r--r-- | net/atm/clip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/atm/clip.c b/net/atm/clip.c index 46339040fef0..1d9eaa4f041a 100644 --- a/net/atm/clip.c +++ b/net/atm/clip.c @@ -384,7 +384,7 @@ static netdev_tx_t clip_start_xmit(struct sk_buff *skb, pr_debug("atm_skb(%p)->vcc(%p)->dev(%p)\n", skb, vcc, vcc->dev); old = xchg(&entry->vccs->xoff, 1); /* assume XOFF ... */ if (old) { - pr_warning("XOFF->XOFF transition\n"); + pr_warn("XOFF->XOFF transition\n"); goto out_release_neigh; } dev->stats.tx_packets++; @@ -447,7 +447,7 @@ static int clip_setentry(struct atm_vcc *vcc, __be32 ip) struct rtable *rt; if (vcc->push != clip_push) { - pr_warning("non-CLIP VCC\n"); + pr_warn("non-CLIP VCC\n"); return -EBADF; } clip_vcc = CLIP_VCC(vcc); |