Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Joe Perches and committed by
David S. Miller
ef423a41 6618ec6f

+3 -3
+2 -2
net/atm/clip.c
··· 384 384 pr_debug("atm_skb(%p)->vcc(%p)->dev(%p)\n", skb, vcc, vcc->dev); 385 385 old = xchg(&entry->vccs->xoff, 1); /* assume XOFF ... */ 386 386 if (old) { 387 - pr_warning("XOFF->XOFF transition\n"); 387 + pr_warn("XOFF->XOFF transition\n"); 388 388 goto out_release_neigh; 389 389 } 390 390 dev->stats.tx_packets++; ··· 447 447 struct rtable *rt; 448 448 449 449 if (vcc->push != clip_push) { 450 - pr_warning("non-CLIP VCC\n"); 450 + pr_warn("non-CLIP VCC\n"); 451 451 return -EBADF; 452 452 } 453 453 clip_vcc = CLIP_VCC(vcc);
+1 -1
net/atm/common.c
··· 300 300 max_sdu = ATM_MAX_AAL34_PDU; 301 301 break; 302 302 default: 303 - pr_warning("AAL problems ... (%d)\n", aal); 303 + pr_warn("AAL problems ... (%d)\n", aal); 304 304 /* fall through */ 305 305 case ATM_AAL5: 306 306 max_sdu = ATM_MAX_AAL5_PDU;