drivers/net: Convert remaining uses of pr_warning to pr_warn
Use the much more common pr_warn instead of pr_warning. Other miscellanea: o Typo fixes submiting/submitting o Coalesce formats o Realign arguments o Add missing terminating '\n' to formats Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
46cfd725c3
commit
fe3881cf7e
@@ -693,11 +693,11 @@ static void yellowfin_tx_timeout(struct net_device *dev)
|
||||
/* Note: these should be KERN_DEBUG. */
|
||||
if (yellowfin_debug) {
|
||||
int i;
|
||||
pr_warning(" Rx ring %p: ", yp->rx_ring);
|
||||
pr_warn(" Rx ring %p: ", yp->rx_ring);
|
||||
for (i = 0; i < RX_RING_SIZE; i++)
|
||||
pr_cont(" %08x", yp->rx_ring[i].result_status);
|
||||
pr_cont("\n");
|
||||
pr_warning(" Tx ring %p: ", yp->tx_ring);
|
||||
pr_warn(" Tx ring %p: ", yp->tx_ring);
|
||||
for (i = 0; i < TX_RING_SIZE; i++)
|
||||
pr_cont(" %04x /%08x",
|
||||
yp->tx_status[i].tx_errs,
|
||||
|
Reference in New Issue
Block a user