Commit 2fc96fff authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

drivers/net/b44.c: Use (pr|netdev|netif)_<level> macro helpers

Add #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Remove #define PFX
Use pr_<level>
Use netdev_<level>
Use netif_<level>
Remove periods from formats
Coalesce long formats
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 497159af
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
* Distribute under GPL. * Distribute under GPL.
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/moduleparam.h> #include <linux/moduleparam.h>
...@@ -34,7 +36,6 @@ ...@@ -34,7 +36,6 @@
#include "b44.h" #include "b44.h"
#define DRV_MODULE_NAME "b44" #define DRV_MODULE_NAME "b44"
#define PFX DRV_MODULE_NAME ": "
#define DRV_MODULE_VERSION "2.0" #define DRV_MODULE_VERSION "2.0"
#define B44_DEF_MSG_ENABLE \ #define B44_DEF_MSG_ENABLE \
...@@ -190,12 +191,9 @@ static int b44_wait_bit(struct b44 *bp, unsigned long reg, ...@@ -190,12 +191,9 @@ static int b44_wait_bit(struct b44 *bp, unsigned long reg,
} }
if (i == timeout) { if (i == timeout) {
if (net_ratelimit()) if (net_ratelimit())
printk(KERN_ERR PFX "%s: BUG! Timeout waiting for bit " netdev_err(bp->dev, "BUG! Timeout waiting for bit %08x of register %lx to %s\n",
"%08x of register " bit, reg, clear ? "clear" : "set");
"%lx to %s.\n",
bp->dev->name,
bit, reg,
(clear ? "clear" : "set"));
return -ENODEV; return -ENODEV;
} }
return 0; return 0;
...@@ -335,8 +333,7 @@ static int b44_phy_reset(struct b44 *bp) ...@@ -335,8 +333,7 @@ static int b44_phy_reset(struct b44 *bp)
err = b44_readphy(bp, MII_BMCR, &val); err = b44_readphy(bp, MII_BMCR, &val);
if (!err) { if (!err) {
if (val & BMCR_RESET) { if (val & BMCR_RESET) {
printk(KERN_ERR PFX "%s: PHY Reset would not complete.\n", netdev_err(bp->dev, "PHY Reset would not complete\n");
bp->dev->name);
err = -ENODEV; err = -ENODEV;
} }
} }
...@@ -415,7 +412,7 @@ static void b44_wap54g10_workaround(struct b44 *bp) ...@@ -415,7 +412,7 @@ static void b44_wap54g10_workaround(struct b44 *bp)
} }
return; return;
error: error:
printk(KERN_WARNING PFX "PHY: cannot reset MII transceiver isolate bit.\n"); pr_warning("PHY: cannot reset MII transceiver isolate bit\n");
} }
#else #else
static inline void b44_wap54g10_workaround(struct b44 *bp) static inline void b44_wap54g10_workaround(struct b44 *bp)
...@@ -508,18 +505,15 @@ static void b44_stats_update(struct b44 *bp) ...@@ -508,18 +505,15 @@ static void b44_stats_update(struct b44 *bp)
static void b44_link_report(struct b44 *bp) static void b44_link_report(struct b44 *bp)
{ {
if (!netif_carrier_ok(bp->dev)) { if (!netif_carrier_ok(bp->dev)) {
printk(KERN_INFO PFX "%s: Link is down.\n", bp->dev->name); netdev_info(bp->dev, "Link is down\n");
} else { } else {
printk(KERN_INFO PFX "%s: Link is up at %d Mbps, %s duplex.\n", netdev_info(bp->dev, "Link is up at %d Mbps, %s duplex\n",
bp->dev->name, (bp->flags & B44_FLAG_100_BASE_T) ? 100 : 10,
(bp->flags & B44_FLAG_100_BASE_T) ? 100 : 10, (bp->flags & B44_FLAG_FULL_DUPLEX) ? "full" : "half");
(bp->flags & B44_FLAG_FULL_DUPLEX) ? "full" : "half");
netdev_info(bp->dev, "Flow control is %s for TX and %s for RX\n",
printk(KERN_INFO PFX "%s: Flow control is %s for TX and " (bp->flags & B44_FLAG_TX_PAUSE) ? "on" : "off",
"%s for RX.\n", (bp->flags & B44_FLAG_RX_PAUSE) ? "on" : "off");
bp->dev->name,
(bp->flags & B44_FLAG_TX_PAUSE) ? "on" : "off",
(bp->flags & B44_FLAG_RX_PAUSE) ? "on" : "off");
} }
} }
...@@ -578,11 +572,9 @@ static void b44_check_phy(struct b44 *bp) ...@@ -578,11 +572,9 @@ static void b44_check_phy(struct b44 *bp)
} }
if (bmsr & BMSR_RFAULT) if (bmsr & BMSR_RFAULT)
printk(KERN_WARNING PFX "%s: Remote fault detected in PHY\n", netdev_warn(bp->dev, "Remote fault detected in PHY\n");
bp->dev->name);
if (bmsr & BMSR_JCD) if (bmsr & BMSR_JCD)
printk(KERN_WARNING PFX "%s: Jabber detected in PHY\n", netdev_warn(bp->dev, "Jabber detected in PHY\n");
bp->dev->name);
} }
} }
...@@ -903,7 +895,7 @@ static irqreturn_t b44_interrupt(int irq, void *dev_id) ...@@ -903,7 +895,7 @@ static irqreturn_t b44_interrupt(int irq, void *dev_id)
handled = 1; handled = 1;
if (unlikely(!netif_running(dev))) { if (unlikely(!netif_running(dev))) {
printk(KERN_INFO "%s: late interrupt.\n", dev->name); netdev_info(dev, "late interrupt\n");
goto irq_ack; goto irq_ack;
} }
...@@ -928,8 +920,7 @@ static void b44_tx_timeout(struct net_device *dev) ...@@ -928,8 +920,7 @@ static void b44_tx_timeout(struct net_device *dev)
{ {
struct b44 *bp = netdev_priv(dev); struct b44 *bp = netdev_priv(dev);
printk(KERN_ERR PFX "%s: transmit timed out, resetting\n", netdev_err(dev, "transmit timed out, resetting\n");
dev->name);
spin_lock_irq(&bp->lock); spin_lock_irq(&bp->lock);
...@@ -958,8 +949,7 @@ static netdev_tx_t b44_start_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -958,8 +949,7 @@ static netdev_tx_t b44_start_xmit(struct sk_buff *skb, struct net_device *dev)
/* This is a hard error, log it. */ /* This is a hard error, log it. */
if (unlikely(TX_BUFFS_AVAIL(bp) < 1)) { if (unlikely(TX_BUFFS_AVAIL(bp) < 1)) {
netif_stop_queue(dev); netif_stop_queue(dev);
printk(KERN_ERR PFX "%s: BUG! Tx Ring full when queue awake!\n", netdev_err(dev, "BUG! Tx Ring full when queue awake!\n");
dev->name);
goto err_out; goto err_out;
} }
...@@ -1335,7 +1325,7 @@ static void b44_halt(struct b44 *bp) ...@@ -1335,7 +1325,7 @@ static void b44_halt(struct b44 *bp)
/* reset PHY */ /* reset PHY */
b44_phy_reset(bp); b44_phy_reset(bp);
/* power down PHY */ /* power down PHY */
printk(KERN_INFO PFX "%s: powering down PHY\n", bp->dev->name); netdev_info(bp->dev, "powering down PHY\n");
bw32(bp, B44_MAC_CTRL, MAC_CTRL_PHY_PDOWN); bw32(bp, B44_MAC_CTRL, MAC_CTRL_PHY_PDOWN);
/* now reset the chip, but without enabling the MAC&PHY /* now reset the chip, but without enabling the MAC&PHY
* part of it. This has to be done _after_ we shut down the PHY */ * part of it. This has to be done _after_ we shut down the PHY */
...@@ -1526,7 +1516,7 @@ static void b44_setup_pseudo_magicp(struct b44 *bp) ...@@ -1526,7 +1516,7 @@ static void b44_setup_pseudo_magicp(struct b44 *bp)
pwol_pattern = kzalloc(B44_PATTERN_SIZE, GFP_KERNEL); pwol_pattern = kzalloc(B44_PATTERN_SIZE, GFP_KERNEL);
if (!pwol_pattern) { if (!pwol_pattern) {
printk(KERN_ERR PFX "Memory not available for WOL\n"); pr_err("Memory not available for WOL\n");
return; return;
} }
...@@ -2099,7 +2089,7 @@ static int __devinit b44_get_invariants(struct b44 *bp) ...@@ -2099,7 +2089,7 @@ static int __devinit b44_get_invariants(struct b44 *bp)
memcpy(bp->dev->dev_addr, addr, 6); memcpy(bp->dev->dev_addr, addr, 6);
if (!is_valid_ether_addr(&bp->dev->dev_addr[0])){ if (!is_valid_ether_addr(&bp->dev->dev_addr[0])){
printk(KERN_ERR PFX "Invalid MAC address found in EEPROM\n"); pr_err("Invalid MAC address found in EEPROM\n");
return -EINVAL; return -EINVAL;
} }
...@@ -2144,12 +2134,12 @@ static int __devinit b44_init_one(struct ssb_device *sdev, ...@@ -2144,12 +2134,12 @@ static int __devinit b44_init_one(struct ssb_device *sdev,
instance++; instance++;
if (b44_version_printed++ == 0) if (b44_version_printed++ == 0)
printk(KERN_INFO "%s", version); pr_info("%s", version);
dev = alloc_etherdev(sizeof(*bp)); dev = alloc_etherdev(sizeof(*bp));
if (!dev) { if (!dev) {
dev_err(sdev->dev, "Etherdev alloc failed, aborting.\n"); dev_err(sdev->dev, "Etherdev alloc failed, aborting\n");
err = -ENOMEM; err = -ENOMEM;
goto out; goto out;
} }
...@@ -2188,13 +2178,13 @@ static int __devinit b44_init_one(struct ssb_device *sdev, ...@@ -2188,13 +2178,13 @@ static int __devinit b44_init_one(struct ssb_device *sdev,
err = ssb_dma_set_mask(sdev, DMA_BIT_MASK(30)); err = ssb_dma_set_mask(sdev, DMA_BIT_MASK(30));
if (err) { if (err) {
dev_err(sdev->dev, dev_err(sdev->dev,
"Required 30BIT DMA mask unsupported by the system.\n"); "Required 30BIT DMA mask unsupported by the system\n");
goto err_out_powerdown; goto err_out_powerdown;
} }
err = b44_get_invariants(bp); err = b44_get_invariants(bp);
if (err) { if (err) {
dev_err(sdev->dev, dev_err(sdev->dev,
"Problem fetching invariants of chip, aborting.\n"); "Problem fetching invariants of chip, aborting\n");
goto err_out_powerdown; goto err_out_powerdown;
} }
...@@ -2214,7 +2204,7 @@ static int __devinit b44_init_one(struct ssb_device *sdev, ...@@ -2214,7 +2204,7 @@ static int __devinit b44_init_one(struct ssb_device *sdev,
err = register_netdev(dev); err = register_netdev(dev);
if (err) { if (err) {
dev_err(sdev->dev, "Cannot register net device, aborting.\n"); dev_err(sdev->dev, "Cannot register net device, aborting\n");
goto err_out_powerdown; goto err_out_powerdown;
} }
...@@ -2225,8 +2215,8 @@ static int __devinit b44_init_one(struct ssb_device *sdev, ...@@ -2225,8 +2215,8 @@ static int __devinit b44_init_one(struct ssb_device *sdev,
*/ */
b44_chip_reset(bp, B44_CHIP_RESET_FULL); b44_chip_reset(bp, B44_CHIP_RESET_FULL);
printk(KERN_INFO "%s: Broadcom 44xx/47xx 10/100BaseT Ethernet %pM\n", netdev_info(dev, "Broadcom 44xx/47xx 10/100BaseT Ethernet %pM\n",
dev->name, dev->dev_addr); dev->dev_addr);
return 0; return 0;
...@@ -2299,7 +2289,7 @@ static int b44_resume(struct ssb_device *sdev) ...@@ -2299,7 +2289,7 @@ static int b44_resume(struct ssb_device *sdev)
rc = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev); rc = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev);
if (rc) { if (rc) {
printk(KERN_ERR PFX "%s: request_irq failed\n", dev->name); netdev_err(dev, "request_irq failed\n");
return rc; return rc;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment