wan: Update to current logging forms
Use pr_fmt, pr_<level> and netdev_<level> as appropriate. 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
c75bb2c6f0
commit
23efcb738e
@@ -36,6 +36,8 @@
|
||||
* Synchronous mode without DMA is unlikely to pass about 2400 baud.
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/mm.h>
|
||||
@@ -365,7 +367,7 @@ static void z8530_rx(struct z8530_channel *c)
|
||||
c->count=0;
|
||||
if(stat&Rx_OVR)
|
||||
{
|
||||
printk(KERN_WARNING "%s: overrun\n", c->dev->name);
|
||||
pr_warn("%s: overrun\n", c->dev->name);
|
||||
c->rx_overrun++;
|
||||
}
|
||||
if(stat&CRC_ERR)
|
||||
@@ -464,12 +466,12 @@ static void z8530_status(struct z8530_channel *chan)
|
||||
if (altered & chan->dcdcheck)
|
||||
{
|
||||
if (status & chan->dcdcheck) {
|
||||
printk(KERN_INFO "%s: DCD raised\n", chan->dev->name);
|
||||
pr_info("%s: DCD raised\n", chan->dev->name);
|
||||
write_zsreg(chan, R3, chan->regs[3] | RxENABLE);
|
||||
if (chan->netdevice)
|
||||
netif_carrier_on(chan->netdevice);
|
||||
} else {
|
||||
printk(KERN_INFO "%s: DCD lost\n", chan->dev->name);
|
||||
pr_info("%s: DCD lost\n", chan->dev->name);
|
||||
write_zsreg(chan, R3, chan->regs[3] & ~RxENABLE);
|
||||
z8530_flush_fifo(chan);
|
||||
if (chan->netdevice)
|
||||
@@ -538,12 +540,12 @@ static void z8530_dma_tx(struct z8530_channel *chan)
|
||||
{
|
||||
if(!chan->dma_tx)
|
||||
{
|
||||
printk(KERN_WARNING "Hey who turned the DMA off?\n");
|
||||
pr_warn("Hey who turned the DMA off?\n");
|
||||
z8530_tx(chan);
|
||||
return;
|
||||
}
|
||||
/* This shouldn't occur in DMA mode */
|
||||
printk(KERN_ERR "DMA tx - bogus event!\n");
|
||||
pr_err("DMA tx - bogus event!\n");
|
||||
z8530_tx(chan);
|
||||
}
|
||||
|
||||
@@ -585,12 +587,12 @@ static void z8530_dma_status(struct z8530_channel *chan)
|
||||
if (altered & chan->dcdcheck)
|
||||
{
|
||||
if (status & chan->dcdcheck) {
|
||||
printk(KERN_INFO "%s: DCD raised\n", chan->dev->name);
|
||||
pr_info("%s: DCD raised\n", chan->dev->name);
|
||||
write_zsreg(chan, R3, chan->regs[3] | RxENABLE);
|
||||
if (chan->netdevice)
|
||||
netif_carrier_on(chan->netdevice);
|
||||
} else {
|
||||
printk(KERN_INFO "%s:DCD lost\n", chan->dev->name);
|
||||
pr_info("%s: DCD lost\n", chan->dev->name);
|
||||
write_zsreg(chan, R3, chan->regs[3] & ~RxENABLE);
|
||||
z8530_flush_fifo(chan);
|
||||
if (chan->netdevice)
|
||||
@@ -712,7 +714,7 @@ irqreturn_t z8530_interrupt(int irq, void *dev_id)
|
||||
|
||||
if(locker)
|
||||
{
|
||||
printk(KERN_ERR "IRQ re-enter\n");
|
||||
pr_err("IRQ re-enter\n");
|
||||
return IRQ_NONE;
|
||||
}
|
||||
locker=1;
|
||||
@@ -758,7 +760,8 @@ irqreturn_t z8530_interrupt(int irq, void *dev_id)
|
||||
}
|
||||
spin_unlock(&dev->lock);
|
||||
if(work==5000)
|
||||
printk(KERN_ERR "%s: interrupt jammed - abort(0x%X)!\n", dev->name, intr);
|
||||
pr_err("%s: interrupt jammed - abort(0x%X)!\n",
|
||||
dev->name, intr);
|
||||
/* Ok all done */
|
||||
locker=0;
|
||||
return IRQ_HANDLED;
|
||||
@@ -1225,7 +1228,7 @@ static const char *z8530_type_name[]={
|
||||
|
||||
void z8530_describe(struct z8530_dev *dev, char *mapping, unsigned long io)
|
||||
{
|
||||
printk(KERN_INFO "%s: %s found at %s 0x%lX, IRQ %d.\n",
|
||||
pr_info("%s: %s found at %s 0x%lX, IRQ %d\n",
|
||||
dev->name,
|
||||
z8530_type_name[dev->type],
|
||||
mapping,
|
||||
@@ -1621,8 +1624,7 @@ static void z8530_rx_done(struct z8530_channel *c)
|
||||
else
|
||||
/* Can't occur as we dont reenable the DMA irq until
|
||||
after the flip is done */
|
||||
printk(KERN_WARNING "%s: DMA flip overrun!\n",
|
||||
c->netdevice->name);
|
||||
netdev_warn(c->netdevice, "DMA flip overrun!\n");
|
||||
|
||||
release_dma_lock(flags);
|
||||
|
||||
@@ -1637,8 +1639,7 @@ static void z8530_rx_done(struct z8530_channel *c)
|
||||
skb = dev_alloc_skb(ct);
|
||||
if (skb == NULL) {
|
||||
c->netdevice->stats.rx_dropped++;
|
||||
printk(KERN_WARNING "%s: Memory squeeze.\n",
|
||||
c->netdevice->name);
|
||||
netdev_warn(c->netdevice, "Memory squeeze\n");
|
||||
} else {
|
||||
skb_put(skb, ct);
|
||||
skb_copy_to_linear_data(skb, rxb, ct);
|
||||
@@ -1678,8 +1679,7 @@ static void z8530_rx_done(struct z8530_channel *c)
|
||||
|
||||
c->skb2 = dev_alloc_skb(c->mtu);
|
||||
if (c->skb2 == NULL)
|
||||
printk(KERN_WARNING "%s: memory squeeze.\n",
|
||||
c->netdevice->name);
|
||||
netdev_warn(c->netdevice, "memory squeeze\n");
|
||||
else
|
||||
skb_put(c->skb2, c->mtu);
|
||||
c->netdevice->stats.rx_packets++;
|
||||
@@ -1693,7 +1693,7 @@ static void z8530_rx_done(struct z8530_channel *c)
|
||||
c->rx_function(c, skb);
|
||||
} else {
|
||||
c->netdevice->stats.rx_dropped++;
|
||||
printk(KERN_ERR "%s: Lost a frame\n", c->netdevice->name);
|
||||
netdev_err(c->netdevice, "Lost a frame\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user