aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-09-09 23:27:44 -0400
committerDavid S. Miller <davem@davemloft.net>2014-09-09 23:37:08 -0400
commitfe3881cf7e09dfb93e4a4c65f44e2d92f92d0022 (patch)
tree43d950cfb847614ba2e0cea08d8d024502aa8a47 /drivers
parent46cfd725c377bc5bb32b56b5151d6de4cb5a71e3 (diff)
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ethernet/3com/3c509.c6
-rw-r--r--drivers/net/ethernet/3com/3c515.c25
-rw-r--r--drivers/net/ethernet/3com/3c59x.c27
-rw-r--r--drivers/net/ethernet/broadcom/b44.c2
-rw-r--r--drivers/net/ethernet/cisco/enic/vnic_dev.c3
-rw-r--r--drivers/net/ethernet/marvell/skge.c6
-rw-r--r--drivers/net/ethernet/marvell/sky2.c2
-rw-r--r--drivers/net/ethernet/packetengines/yellowfin.c4
-rw-r--r--drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c5
-rw-r--r--drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c2
-rw-r--r--drivers/net/ethernet/sun/cassini.c2
-rw-r--r--drivers/net/ethernet/sun/niu.c4
-rw-r--r--drivers/net/ethernet/sun/sunvnet.c2
-rw-r--r--drivers/net/ethernet/tile/tilepro.c8
-rw-r--r--drivers/net/wireless/mwifiex/usb.c2
-rw-r--r--drivers/net/wireless/orinoco/orinoco_usb.c28
-rw-r--r--drivers/net/wireless/ti/wlcore/debug.h2
17 files changed, 62 insertions, 68 deletions
diff --git a/drivers/net/ethernet/3com/3c509.c b/drivers/net/ethernet/3com/3c509.c
index a968654b631d..4547a1b8b958 100644
--- a/drivers/net/ethernet/3com/3c509.c
+++ b/drivers/net/ethernet/3com/3c509.c
@@ -695,9 +695,9 @@ el3_tx_timeout (struct net_device *dev)
695 int ioaddr = dev->base_addr; 695 int ioaddr = dev->base_addr;
696 696
697 /* Transmitter timeout, serious problems. */ 697 /* Transmitter timeout, serious problems. */
698 pr_warning("%s: transmit timed out, Tx_status %2.2x status %4.4x Tx FIFO room %d.\n", 698 pr_warn("%s: transmit timed out, Tx_status %2.2x status %4.4x Tx FIFO room %d\n",
699 dev->name, inb(ioaddr + TX_STATUS), inw(ioaddr + EL3_STATUS), 699 dev->name, inb(ioaddr + TX_STATUS), inw(ioaddr + EL3_STATUS),
700 inw(ioaddr + TX_FREE)); 700 inw(ioaddr + TX_FREE));
701 dev->stats.tx_errors++; 701 dev->stats.tx_errors++;
702 dev->trans_start = jiffies; /* prevent tx timeout */ 702 dev->trans_start = jiffies; /* prevent tx timeout */
703 /* Issue TX_RESET and TX_START commands. */ 703 /* Issue TX_RESET and TX_START commands. */
diff --git a/drivers/net/ethernet/3com/3c515.c b/drivers/net/ethernet/3com/3c515.c
index 94c656f5a05d..942fb0d5aace 100644
--- a/drivers/net/ethernet/3com/3c515.c
+++ b/drivers/net/ethernet/3com/3c515.c
@@ -515,7 +515,7 @@ static struct net_device *corkscrew_scan(int unit)
515 if (pnp_device_attach(idev) < 0) 515 if (pnp_device_attach(idev) < 0)
516 continue; 516 continue;
517 if (pnp_activate_dev(idev) < 0) { 517 if (pnp_activate_dev(idev) < 0) {
518 pr_warning("pnp activate failed (out of resources?)\n"); 518 pr_warn("pnp activate failed (out of resources?)\n");
519 pnp_device_detach(idev); 519 pnp_device_detach(idev);
520 continue; 520 continue;
521 } 521 }
@@ -659,7 +659,7 @@ static int corkscrew_setup(struct net_device *dev, int ioaddr,
659 pr_cont(", IRQ %d\n", dev->irq); 659 pr_cont(", IRQ %d\n", dev->irq);
660 /* Tell them about an invalid IRQ. */ 660 /* Tell them about an invalid IRQ. */
661 if (corkscrew_debug && (dev->irq <= 0 || dev->irq > 15)) 661 if (corkscrew_debug && (dev->irq <= 0 || dev->irq > 15))
662 pr_warning(" *** Warning: this IRQ is unlikely to work! ***\n"); 662 pr_warn(" *** Warning: this IRQ is unlikely to work! ***\n");
663 663
664 { 664 {
665 static const char * const ram_split[] = { 665 static const char * const ram_split[] = {
@@ -967,13 +967,13 @@ static void corkscrew_timeout(struct net_device *dev)
967 struct corkscrew_private *vp = netdev_priv(dev); 967 struct corkscrew_private *vp = netdev_priv(dev);
968 int ioaddr = dev->base_addr; 968 int ioaddr = dev->base_addr;
969 969
970 pr_warning("%s: transmit timed out, tx_status %2.2x status %4.4x.\n", 970 pr_warn("%s: transmit timed out, tx_status %2.2x status %4.4x\n",
971 dev->name, inb(ioaddr + TxStatus), 971 dev->name, inb(ioaddr + TxStatus),
972 inw(ioaddr + EL3_STATUS)); 972 inw(ioaddr + EL3_STATUS));
973 /* Slight code bloat to be user friendly. */ 973 /* Slight code bloat to be user friendly. */
974 if ((inb(ioaddr + TxStatus) & 0x88) == 0x88) 974 if ((inb(ioaddr + TxStatus) & 0x88) == 0x88)
975 pr_warning("%s: Transmitter encountered 16 collisions --" 975 pr_warn("%s: Transmitter encountered 16 collisions -- network cable problem?\n",
976 " network cable problem?\n", dev->name); 976 dev->name);
977#ifndef final_version 977#ifndef final_version
978 pr_debug(" Flags; bus-master %d, full %d; dirty %d current %d.\n", 978 pr_debug(" Flags; bus-master %d, full %d; dirty %d current %d.\n",
979 vp->full_bus_master_tx, vp->tx_full, vp->dirty_tx, 979 vp->full_bus_master_tx, vp->tx_full, vp->dirty_tx,
@@ -1382,13 +1382,10 @@ static int boomerang_rx(struct net_device *dev)
1382 temp = skb_put(skb, pkt_len); 1382 temp = skb_put(skb, pkt_len);
1383 /* Remove this checking code for final release. */ 1383 /* Remove this checking code for final release. */
1384 if (isa_bus_to_virt(vp->rx_ring[entry].addr) != temp) 1384 if (isa_bus_to_virt(vp->rx_ring[entry].addr) != temp)
1385 pr_warning("%s: Warning -- the skbuff addresses do not match" 1385 pr_warn("%s: Warning -- the skbuff addresses do not match in boomerang_rx: %p vs. %p / %p\n",
1386 " in boomerang_rx: %p vs. %p / %p.\n", 1386 dev->name,
1387 dev->name, 1387 isa_bus_to_virt(vp->rx_ring[entry].addr),
1388 isa_bus_to_virt(vp-> 1388 skb->head, temp);
1389 rx_ring[entry].
1390 addr), skb->head,
1391 temp);
1392 rx_nocopy++; 1389 rx_nocopy++;
1393 } 1390 }
1394 skb->protocol = eth_type_trans(skb, dev); 1391 skb->protocol = eth_type_trans(skb, dev);
diff --git a/drivers/net/ethernet/3com/3c59x.c b/drivers/net/ethernet/3com/3c59x.c
index 3fe45c705933..2b92d712f212 100644
--- a/drivers/net/ethernet/3com/3c59x.c
+++ b/drivers/net/ethernet/3com/3c59x.c
@@ -1310,8 +1310,8 @@ static int vortex_probe1(struct device *gendev, void __iomem *ioaddr, int irq,
1310 pr_cont(", IRQ %d\n", dev->irq); 1310 pr_cont(", IRQ %d\n", dev->irq);
1311 /* Tell them about an invalid IRQ. */ 1311 /* Tell them about an invalid IRQ. */
1312 if (dev->irq <= 0 || dev->irq >= nr_irqs) 1312 if (dev->irq <= 0 || dev->irq >= nr_irqs)
1313 pr_warning(" *** Warning: IRQ %d is unlikely to work! ***\n", 1313 pr_warn(" *** Warning: IRQ %d is unlikely to work! ***\n",
1314 dev->irq); 1314 dev->irq);
1315 1315
1316 step = (window_read8(vp, 4, Wn4_NetDiag) & 0x1e) >> 1; 1316 step = (window_read8(vp, 4, Wn4_NetDiag) & 0x1e) >> 1;
1317 if (print_info) { 1317 if (print_info) {
@@ -1425,7 +1425,7 @@ static int vortex_probe1(struct device *gendev, void __iomem *ioaddr, int irq,
1425 } 1425 }
1426 mii_preamble_required--; 1426 mii_preamble_required--;
1427 if (phy_idx == 0) { 1427 if (phy_idx == 0) {
1428 pr_warning(" ***WARNING*** No MII transceivers found!\n"); 1428 pr_warn(" ***WARNING*** No MII transceivers found!\n");
1429 vp->phys[0] = 24; 1429 vp->phys[0] = 24;
1430 } else { 1430 } else {
1431 vp->advertising = mdio_read(dev, vp->phys[0], MII_ADVERTISE); 1431 vp->advertising = mdio_read(dev, vp->phys[0], MII_ADVERTISE);
@@ -1566,8 +1566,7 @@ vortex_up(struct net_device *dev)
1566 pci_restore_state(VORTEX_PCI(vp)); 1566 pci_restore_state(VORTEX_PCI(vp));
1567 err = pci_enable_device(VORTEX_PCI(vp)); 1567 err = pci_enable_device(VORTEX_PCI(vp));
1568 if (err) { 1568 if (err) {
1569 pr_warning("%s: Could not enable device\n", 1569 pr_warn("%s: Could not enable device\n", dev->name);
1570 dev->name);
1571 goto err_out; 1570 goto err_out;
1572 } 1571 }
1573 } 1572 }
@@ -2007,8 +2006,8 @@ vortex_error(struct net_device *dev, int status)
2007 /* This occurs when we have the wrong media type! */ 2006 /* This occurs when we have the wrong media type! */
2008 if (DoneDidThat == 0 && 2007 if (DoneDidThat == 0 &&
2009 ioread16(ioaddr + EL3_STATUS) & StatsFull) { 2008 ioread16(ioaddr + EL3_STATUS) & StatsFull) {
2010 pr_warning("%s: Updating statistics failed, disabling " 2009 pr_warn("%s: Updating statistics failed, disabling stats as an interrupt source\n",
2011 "stats as an interrupt source.\n", dev->name); 2010 dev->name);
2012 iowrite16(SetIntrEnb | 2011 iowrite16(SetIntrEnb |
2013 (window_read16(vp, 5, 10) & ~StatsFull), 2012 (window_read16(vp, 5, 10) & ~StatsFull),
2014 ioaddr + EL3_CMD); 2013 ioaddr + EL3_CMD);
@@ -2147,8 +2146,8 @@ boomerang_start_xmit(struct sk_buff *skb, struct net_device *dev)
2147 2146
2148 if (vp->cur_tx - vp->dirty_tx >= TX_RING_SIZE) { 2147 if (vp->cur_tx - vp->dirty_tx >= TX_RING_SIZE) {
2149 if (vortex_debug > 0) 2148 if (vortex_debug > 0)
2150 pr_warning("%s: BUG! Tx Ring full, refusing to send buffer.\n", 2149 pr_warn("%s: BUG! Tx Ring full, refusing to send buffer\n",
2151 dev->name); 2150 dev->name);
2152 netif_stop_queue(dev); 2151 netif_stop_queue(dev);
2153 return NETDEV_TX_BUSY; 2152 return NETDEV_TX_BUSY;
2154 } 2153 }
@@ -2311,7 +2310,7 @@ vortex_interrupt(int irq, void *dev_id)
2311 } 2310 }
2312 2311
2313 if (--work_done < 0) { 2312 if (--work_done < 0) {
2314 pr_warning("%s: Too much work in interrupt, status %4.4x.\n", 2313 pr_warn("%s: Too much work in interrupt, status %4.4x\n",
2315 dev->name, status); 2314 dev->name, status);
2316 /* Disable all pending interrupts. */ 2315 /* Disable all pending interrupts. */
2317 do { 2316 do {
@@ -2444,7 +2443,7 @@ boomerang_interrupt(int irq, void *dev_id)
2444 vortex_error(dev, status); 2443 vortex_error(dev, status);
2445 2444
2446 if (--work_done < 0) { 2445 if (--work_done < 0) {
2447 pr_warning("%s: Too much work in interrupt, status %4.4x.\n", 2446 pr_warn("%s: Too much work in interrupt, status %4.4x\n",
2448 dev->name, status); 2447 dev->name, status);
2449 /* Disable all pending interrupts. */ 2448 /* Disable all pending interrupts. */
2450 do { 2449 do {
@@ -2620,7 +2619,8 @@ boomerang_rx(struct net_device *dev)
2620 if (skb == NULL) { 2619 if (skb == NULL) {
2621 static unsigned long last_jif; 2620 static unsigned long last_jif;
2622 if (time_after(jiffies, last_jif + 10 * HZ)) { 2621 if (time_after(jiffies, last_jif + 10 * HZ)) {
2623 pr_warning("%s: memory shortage\n", dev->name); 2622 pr_warn("%s: memory shortage\n",
2623 dev->name);
2624 last_jif = jiffies; 2624 last_jif = jiffies;
2625 } 2625 }
2626 if ((vp->cur_rx - vp->dirty_rx) == RX_RING_SIZE) 2626 if ((vp->cur_rx - vp->dirty_rx) == RX_RING_SIZE)
@@ -2719,7 +2719,8 @@ vortex_close(struct net_device *dev)
2719 if (vp->rx_csumhits && 2719 if (vp->rx_csumhits &&
2720 (vp->drv_flags & HAS_HWCKSM) == 0 && 2720 (vp->drv_flags & HAS_HWCKSM) == 0 &&
2721 (vp->card_idx >= MAX_UNITS || hw_checksums[vp->card_idx] == -1)) { 2721 (vp->card_idx >= MAX_UNITS || hw_checksums[vp->card_idx] == -1)) {
2722 pr_warning("%s supports hardware checksums, and we're not using them!\n", dev->name); 2722 pr_warn("%s supports hardware checksums, and we're not using them!\n",
2723 dev->name);
2723 } 2724 }
2724#endif 2725#endif
2725 2726
diff --git a/drivers/net/ethernet/broadcom/b44.c b/drivers/net/ethernet/broadcom/b44.c
index 4a7028d65912..56fadbd4258a 100644
--- a/drivers/net/ethernet/broadcom/b44.c
+++ b/drivers/net/ethernet/broadcom/b44.c
@@ -427,7 +427,7 @@ static void b44_wap54g10_workaround(struct b44 *bp)
427 } 427 }
428 return; 428 return;
429error: 429error:
430 pr_warning("PHY: cannot reset MII transceiver isolate bit\n"); 430 pr_warn("PHY: cannot reset MII transceiver isolate bit\n");
431} 431}
432#else 432#else
433static inline void b44_wap54g10_workaround(struct b44 *bp) 433static inline void b44_wap54g10_workaround(struct b44 *bp)
diff --git a/drivers/net/ethernet/cisco/enic/vnic_dev.c b/drivers/net/ethernet/cisco/enic/vnic_dev.c
index 37472ce4fac3..62f7b7baf93c 100644
--- a/drivers/net/ethernet/cisco/enic/vnic_dev.c
+++ b/drivers/net/ethernet/cisco/enic/vnic_dev.c
@@ -847,8 +847,7 @@ int vnic_dev_intr_coal_timer_info(struct vnic_dev *vdev)
847 */ 847 */
848 if ((err == ERR_ECMDUNKNOWN) || 848 if ((err == ERR_ECMDUNKNOWN) ||
849 (!err && !(vdev->args[0] && vdev->args[1] && vdev->args[2]))) { 849 (!err && !(vdev->args[0] && vdev->args[1] && vdev->args[2]))) {
850 pr_warning("Using default conversion factor for " 850 pr_warn("Using default conversion factor for interrupt coalesce timer\n");
851 "interrupt coalesce timer\n");
852 vnic_dev_intr_coal_timer_info_default(vdev); 851 vnic_dev_intr_coal_timer_info_default(vdev);
853 return 0; 852 return 0;
854 } 853 }
diff --git a/drivers/net/ethernet/marvell/skge.c b/drivers/net/ethernet/marvell/skge.c
index 24b242277ea1..264eab7d3b26 100644
--- a/drivers/net/ethernet/marvell/skge.c
+++ b/drivers/net/ethernet/marvell/skge.c
@@ -1107,7 +1107,7 @@ static u16 xm_phy_read(struct skge_hw *hw, int port, u16 reg)
1107{ 1107{
1108 u16 v = 0; 1108 u16 v = 0;
1109 if (__xm_phy_read(hw, port, reg, &v)) 1109 if (__xm_phy_read(hw, port, reg, &v))
1110 pr_warning("%s: phy read timed out\n", hw->dev[port]->name); 1110 pr_warn("%s: phy read timed out\n", hw->dev[port]->name);
1111 return v; 1111 return v;
1112} 1112}
1113 1113
@@ -1903,7 +1903,7 @@ static int gm_phy_write(struct skge_hw *hw, int port, u16 reg, u16 val)
1903 return 0; 1903 return 0;
1904 } 1904 }
1905 1905
1906 pr_warning("%s: phy write timeout\n", hw->dev[port]->name); 1906 pr_warn("%s: phy write timeout\n", hw->dev[port]->name);
1907 return -EIO; 1907 return -EIO;
1908} 1908}
1909 1909
@@ -1931,7 +1931,7 @@ static u16 gm_phy_read(struct skge_hw *hw, int port, u16 reg)
1931{ 1931{
1932 u16 v = 0; 1932 u16 v = 0;
1933 if (__gm_phy_read(hw, port, reg, &v)) 1933 if (__gm_phy_read(hw, port, reg, &v))
1934 pr_warning("%s: phy read timeout\n", hw->dev[port]->name); 1934 pr_warn("%s: phy read timeout\n", hw->dev[port]->name);
1935 return v; 1935 return v;
1936} 1936}
1937 1937
diff --git a/drivers/net/ethernet/marvell/sky2.c b/drivers/net/ethernet/marvell/sky2.c
index dba48a5ce7ab..bd3366267039 100644
--- a/drivers/net/ethernet/marvell/sky2.c
+++ b/drivers/net/ethernet/marvell/sky2.c
@@ -2814,7 +2814,7 @@ static int sky2_status_intr(struct sky2_hw *hw, int to_do, u16 idx)
2814 2814
2815 default: 2815 default:
2816 if (net_ratelimit()) 2816 if (net_ratelimit())
2817 pr_warning("unknown status opcode 0x%x\n", opcode); 2817 pr_warn("unknown status opcode 0x%x\n", opcode);
2818 } 2818 }
2819 } while (hw->st_idx != idx); 2819 } while (hw->st_idx != idx);
2820 2820
diff --git a/drivers/net/ethernet/packetengines/yellowfin.c b/drivers/net/ethernet/packetengines/yellowfin.c
index 2d6b148528dd..fa2db41e02f8 100644
--- a/drivers/net/ethernet/packetengines/yellowfin.c
+++ b/drivers/net/ethernet/packetengines/yellowfin.c
@@ -693,11 +693,11 @@ static void yellowfin_tx_timeout(struct net_device *dev)
693 /* Note: these should be KERN_DEBUG. */ 693 /* Note: these should be KERN_DEBUG. */
694 if (yellowfin_debug) { 694 if (yellowfin_debug) {
695 int i; 695 int i;
696 pr_warning(" Rx ring %p: ", yp->rx_ring); 696 pr_warn(" Rx ring %p: ", yp->rx_ring);
697 for (i = 0; i < RX_RING_SIZE; i++) 697 for (i = 0; i < RX_RING_SIZE; i++)
698 pr_cont(" %08x", yp->rx_ring[i].result_status); 698 pr_cont(" %08x", yp->rx_ring[i].result_status);
699 pr_cont("\n"); 699 pr_cont("\n");
700 pr_warning(" Tx ring %p: ", yp->tx_ring); 700 pr_warn(" Tx ring %p: ", yp->tx_ring);
701 for (i = 0; i < TX_RING_SIZE; i++) 701 for (i = 0; i < TX_RING_SIZE; i++)
702 pr_cont(" %04x /%08x", 702 pr_cont(" %04x /%08x",
703 yp->tx_status[i].tx_errs, 703 yp->tx_status[i].tx_errs,
diff --git a/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c b/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c
index 1159031f885b..32456c79cc73 100644
--- a/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c
+++ b/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c
@@ -1477,9 +1477,8 @@ netxen_nic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1477 u32 val; 1477 u32 val;
1478 1478
1479 if (pdev->revision >= NX_P3_A0 && pdev->revision <= NX_P3_B1) { 1479 if (pdev->revision >= NX_P3_A0 && pdev->revision <= NX_P3_B1) {
1480 pr_warning("%s: chip revisions between 0x%x-0x%x " 1480 pr_warn("%s: chip revisions between 0x%x-0x%x will not be enabled\n",
1481 "will not be enabled.\n", 1481 module_name(THIS_MODULE), NX_P3_A0, NX_P3_B1);
1482 module_name(THIS_MODULE), NX_P3_A0, NX_P3_B1);
1483 return -ENODEV; 1482 return -ENODEV;
1484 } 1483 }
1485 1484
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
index 8dd040827c69..b735fa22ac95 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
@@ -282,7 +282,7 @@ int stmmac_mdio_register(struct net_device *ndev)
282 } 282 }
283 283
284 if (!found) { 284 if (!found) {
285 pr_warning("%s: No PHY found\n", ndev->name); 285 pr_warn("%s: No PHY found\n", ndev->name);
286 mdiobus_unregister(new_bus); 286 mdiobus_unregister(new_bus);
287 mdiobus_free(new_bus); 287 mdiobus_free(new_bus);
288 return -ENODEV; 288 return -ENODEV;
diff --git a/drivers/net/ethernet/sun/cassini.c b/drivers/net/ethernet/sun/cassini.c
index 37f87ff28f03..02d370e58110 100644
--- a/drivers/net/ethernet/sun/cassini.c
+++ b/drivers/net/ethernet/sun/cassini.c
@@ -4962,7 +4962,7 @@ static int cas_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
4962 pci_cmd |= PCI_COMMAND_PARITY; 4962 pci_cmd |= PCI_COMMAND_PARITY;
4963 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd); 4963 pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
4964 if (pci_try_set_mwi(pdev)) 4964 if (pci_try_set_mwi(pdev))
4965 pr_warning("Could not enable MWI for %s\n", pci_name(pdev)); 4965 pr_warn("Could not enable MWI for %s\n", pci_name(pdev));
4966 4966
4967 cas_program_bridge(pdev); 4967 cas_program_bridge(pdev);
4968 4968
diff --git a/drivers/net/ethernet/sun/niu.c b/drivers/net/ethernet/sun/niu.c
index 8216be46540f..904fd1ab5f6e 100644
--- a/drivers/net/ethernet/sun/niu.c
+++ b/drivers/net/ethernet/sun/niu.c
@@ -8717,8 +8717,8 @@ static void niu_divide_channels(struct niu_parent *parent,
8717 parent->txchan_per_port[i] = 1; 8717 parent->txchan_per_port[i] = 1;
8718 } 8718 }
8719 if (tot_rx < NIU_NUM_RXCHAN || tot_tx < NIU_NUM_TXCHAN) { 8719 if (tot_rx < NIU_NUM_RXCHAN || tot_tx < NIU_NUM_TXCHAN) {
8720 pr_warning("niu%d: Driver bug, wasted channels, RX[%d] TX[%d]\n", 8720 pr_warn("niu%d: Driver bug, wasted channels, RX[%d] TX[%d]\n",
8721 parent->index, tot_rx, tot_tx); 8721 parent->index, tot_rx, tot_tx);
8722 } 8722 }
8723} 8723}
8724 8724
diff --git a/drivers/net/ethernet/sun/sunvnet.c b/drivers/net/ethernet/sun/sunvnet.c
index 23c89ab5a6ad..a4657a401278 100644
--- a/drivers/net/ethernet/sun/sunvnet.c
+++ b/drivers/net/ethernet/sun/sunvnet.c
@@ -534,7 +534,7 @@ static void vnet_event(void *arg, int event)
534 } 534 }
535 535
536 if (unlikely(event != LDC_EVENT_DATA_READY)) { 536 if (unlikely(event != LDC_EVENT_DATA_READY)) {
537 pr_warning("Unexpected LDC event %d\n", event); 537 pr_warn("Unexpected LDC event %d\n", event);
538 spin_unlock_irqrestore(&vio->lock, flags); 538 spin_unlock_irqrestore(&vio->lock, flags);
539 return; 539 return;
540 } 540 }
diff --git a/drivers/net/ethernet/tile/tilepro.c b/drivers/net/ethernet/tile/tilepro.c
index 88c712126692..88818d5054ab 100644
--- a/drivers/net/ethernet/tile/tilepro.c
+++ b/drivers/net/ethernet/tile/tilepro.c
@@ -956,7 +956,7 @@ static int tile_net_open_aux(struct net_device *dev)
956 */ 956 */
957 if (hv_dev_pwrite(priv->hv_devhdl, 0, (HV_VirtAddr)&dummy, 957 if (hv_dev_pwrite(priv->hv_devhdl, 0, (HV_VirtAddr)&dummy,
958 sizeof(dummy), NETIO_IPP_START_SHIM_OFF) < 0) { 958 sizeof(dummy), NETIO_IPP_START_SHIM_OFF) < 0) {
959 pr_warning("Failed to start LIPP/LEPP.\n"); 959 pr_warn("Failed to start LIPP/LEPP\n");
960 return -EIO; 960 return -EIO;
961 } 961 }
962 962
@@ -2399,8 +2399,7 @@ static int __init network_cpus_setup(char *str)
2399{ 2399{
2400 int rc = cpulist_parse_crop(str, &network_cpus_map); 2400 int rc = cpulist_parse_crop(str, &network_cpus_map);
2401 if (rc != 0) { 2401 if (rc != 0) {
2402 pr_warning("network_cpus=%s: malformed cpu list\n", 2402 pr_warn("network_cpus=%s: malformed cpu list\n", str);
2403 str);
2404 } else { 2403 } else {
2405 2404
2406 /* Remove dedicated cpus. */ 2405 /* Remove dedicated cpus. */
@@ -2409,8 +2408,7 @@ static int __init network_cpus_setup(char *str)
2409 2408
2410 2409
2411 if (cpumask_empty(&network_cpus_map)) { 2410 if (cpumask_empty(&network_cpus_map)) {
2412 pr_warning("Ignoring network_cpus='%s'.\n", 2411 pr_warn("Ignoring network_cpus='%s'\n", str);
2413 str);
2414 } else { 2412 } else {
2415 char buf[1024]; 2413 char buf[1024];
2416 cpulist_scnprintf(buf, sizeof(buf), &network_cpus_map); 2414 cpulist_scnprintf(buf, sizeof(buf), &network_cpus_map);
diff --git a/drivers/net/wireless/mwifiex/usb.c b/drivers/net/wireless/mwifiex/usb.c
index 7118a18b91ba..4371e12b36f3 100644
--- a/drivers/net/wireless/mwifiex/usb.c
+++ b/drivers/net/wireless/mwifiex/usb.c
@@ -357,7 +357,7 @@ static int mwifiex_usb_probe(struct usb_interface *intf,
357 card->usb_boot_state = USB8XXX_FW_READY; 357 card->usb_boot_state = USB8XXX_FW_READY;
358 break; 358 break;
359 default: 359 default:
360 pr_warning("unknown id_product %#x\n", id_product); 360 pr_warn("unknown id_product %#x\n", id_product);
361 card->usb_boot_state = USB8XXX_FW_DNLD; 361 card->usb_boot_state = USB8XXX_FW_DNLD;
362 break; 362 break;
363 } 363 }
diff --git a/drivers/net/wireless/orinoco/orinoco_usb.c b/drivers/net/wireless/orinoco/orinoco_usb.c
index f4b784fc882b..995846422dc0 100644
--- a/drivers/net/wireless/orinoco/orinoco_usb.c
+++ b/drivers/net/wireless/orinoco/orinoco_usb.c
@@ -534,7 +534,7 @@ static void ezusb_request_out_callback(struct urb *urb)
534 534
535 if (ctx->killed) { 535 if (ctx->killed) {
536 spin_unlock_irqrestore(&upriv->req_lock, flags); 536 spin_unlock_irqrestore(&upriv->req_lock, flags);
537 pr_warning("interrupt called with dead ctx"); 537 pr_warn("interrupt called with dead ctx\n");
538 goto out; 538 goto out;
539 } 539 }
540 540
@@ -671,8 +671,8 @@ static void ezusb_request_in_callback(struct ezusb_priv *upriv,
671 default: 671 default:
672 spin_unlock_irqrestore(&upriv->req_lock, flags); 672 spin_unlock_irqrestore(&upriv->req_lock, flags);
673 673
674 pr_warning("Matched IN URB, unexpected context state(0x%x)", 674 pr_warn("Matched IN URB, unexpected context state(0x%x)\n",
675 state); 675 state);
676 /* Throw this CTX away and try submitting another */ 676 /* Throw this CTX away and try submitting another */
677 del_timer(&ctx->timer); 677 del_timer(&ctx->timer);
678 ctx->outurb->transfer_flags |= URB_ASYNC_UNLINK; 678 ctx->outurb->transfer_flags |= URB_ASYNC_UNLINK;
@@ -1394,12 +1394,12 @@ static void ezusb_bulk_in_callback(struct urb *urb)
1394 /* When a device gets unplugged we get this every time 1394 /* When a device gets unplugged we get this every time
1395 * we resubmit, flooding the logs. Since we don't use 1395 * we resubmit, flooding the logs. Since we don't use
1396 * USB timeouts, it shouldn't happen any other time*/ 1396 * USB timeouts, it shouldn't happen any other time*/
1397 pr_warning("%s: urb timed out, not resubmiting", __func__); 1397 pr_warn("%s: urb timed out, not resubmitting\n", __func__);
1398 return; 1398 return;
1399 } 1399 }
1400 if (urb->status == -ECONNABORTED) { 1400 if (urb->status == -ECONNABORTED) {
1401 pr_warning("%s: connection abort, resubmiting urb", 1401 pr_warn("%s: connection abort, resubmitting urb\n",
1402 __func__); 1402 __func__);
1403 goto resubmit; 1403 goto resubmit;
1404 } 1404 }
1405 if ((urb->status == -EILSEQ) 1405 if ((urb->status == -EILSEQ)
@@ -1608,7 +1608,7 @@ static int ezusb_probe(struct usb_interface *interface,
1608 if (usb_endpoint_is_bulk_in(ep)) { 1608 if (usb_endpoint_is_bulk_in(ep)) {
1609 /* we found a bulk in endpoint */ 1609 /* we found a bulk in endpoint */
1610 if (upriv->read_urb != NULL) { 1610 if (upriv->read_urb != NULL) {
1611 pr_warning("Found a second bulk in ep, ignored"); 1611 pr_warn("Found a second bulk in ep, ignored\n");
1612 continue; 1612 continue;
1613 } 1613 }
1614 1614
@@ -1618,10 +1618,10 @@ static int ezusb_probe(struct usb_interface *interface,
1618 goto error; 1618 goto error;
1619 } 1619 }
1620 if (le16_to_cpu(ep->wMaxPacketSize) != 64) 1620 if (le16_to_cpu(ep->wMaxPacketSize) != 64)
1621 pr_warning("bulk in: wMaxPacketSize!= 64"); 1621 pr_warn("bulk in: wMaxPacketSize!= 64\n");
1622 if (ep->bEndpointAddress != (2 | USB_DIR_IN)) 1622 if (ep->bEndpointAddress != (2 | USB_DIR_IN))
1623 pr_warning("bulk in: bEndpointAddress: %d", 1623 pr_warn("bulk in: bEndpointAddress: %d\n",
1624 ep->bEndpointAddress); 1624 ep->bEndpointAddress);
1625 upriv->read_pipe = usb_rcvbulkpipe(udev, 1625 upriv->read_pipe = usb_rcvbulkpipe(udev,
1626 ep-> 1626 ep->
1627 bEndpointAddress); 1627 bEndpointAddress);
@@ -1636,15 +1636,15 @@ static int ezusb_probe(struct usb_interface *interface,
1636 if (usb_endpoint_is_bulk_out(ep)) { 1636 if (usb_endpoint_is_bulk_out(ep)) {
1637 /* we found a bulk out endpoint */ 1637 /* we found a bulk out endpoint */
1638 if (upriv->bap_buf != NULL) { 1638 if (upriv->bap_buf != NULL) {
1639 pr_warning("Found a second bulk out ep, ignored"); 1639 pr_warn("Found a second bulk out ep, ignored\n");
1640 continue; 1640 continue;
1641 } 1641 }
1642 1642
1643 if (le16_to_cpu(ep->wMaxPacketSize) != 64) 1643 if (le16_to_cpu(ep->wMaxPacketSize) != 64)
1644 pr_warning("bulk out: wMaxPacketSize != 64"); 1644 pr_warn("bulk out: wMaxPacketSize != 64\n");
1645 if (ep->bEndpointAddress != 2) 1645 if (ep->bEndpointAddress != 2)
1646 pr_warning("bulk out: bEndpointAddress: %d", 1646 pr_warn("bulk out: bEndpointAddress: %d\n",
1647 ep->bEndpointAddress); 1647 ep->bEndpointAddress);
1648 upriv->write_pipe = usb_sndbulkpipe(udev, 1648 upriv->write_pipe = usb_sndbulkpipe(udev,
1649 ep-> 1649 ep->
1650 bEndpointAddress); 1650 bEndpointAddress);
diff --git a/drivers/net/wireless/ti/wlcore/debug.h b/drivers/net/wireless/ti/wlcore/debug.h
index 0420bd45e4ee..27bfb7c11e7b 100644
--- a/drivers/net/wireless/ti/wlcore/debug.h
+++ b/drivers/net/wireless/ti/wlcore/debug.h
@@ -65,7 +65,7 @@ extern u32 wl12xx_debug_level;
65 pr_err(DRIVER_PREFIX "ERROR " fmt "\n", ##arg) 65 pr_err(DRIVER_PREFIX "ERROR " fmt "\n", ##arg)
66 66
67#define wl1271_warning(fmt, arg...) \ 67#define wl1271_warning(fmt, arg...) \
68 pr_warning(DRIVER_PREFIX "WARNING " fmt "\n", ##arg) 68 pr_warn(DRIVER_PREFIX "WARNING " fmt "\n", ##arg)
69 69
70#define wl1271_notice(fmt, arg...) \ 70#define wl1271_notice(fmt, arg...) \
71 pr_info(DRIVER_PREFIX fmt "\n", ##arg) 71 pr_info(DRIVER_PREFIX fmt "\n", ##arg)