can: replace the dev_dbg/info/err/... with the new netdev_xxx macros
Cc: uclinux-dist-devel@blackfin.uclinux.org Cc: Anant Gole <anantgole@ti.com> Cc: Chris Elston <celston@katalix.com> Cc: Sebastian Haas <haas@ems-wuensche.com> Cc: Matthias Fuchs <matthias.fuchs@esd.eu> Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> Acked-by: Sebastian Haas <dev@sebastianhaas.info> Acked-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:

committed by
Marc Kleine-Budde

parent
79d0d8a7d5
commit
aabdfd6adb
@@ -128,7 +128,7 @@ static void set_reset_mode(struct net_device *dev)
|
||||
status = priv->read_reg(priv, REG_MOD);
|
||||
}
|
||||
|
||||
dev_err(dev->dev.parent, "setting SJA1000 into reset mode failed!\n");
|
||||
netdev_err(dev, "setting SJA1000 into reset mode failed!\n");
|
||||
}
|
||||
|
||||
static void set_normal_mode(struct net_device *dev)
|
||||
@@ -156,7 +156,7 @@ static void set_normal_mode(struct net_device *dev)
|
||||
status = priv->read_reg(priv, REG_MOD);
|
||||
}
|
||||
|
||||
dev_err(dev->dev.parent, "setting SJA1000 into normal mode failed!\n");
|
||||
netdev_err(dev, "setting SJA1000 into normal mode failed!\n");
|
||||
}
|
||||
|
||||
static void sja1000_start(struct net_device *dev)
|
||||
@@ -209,8 +209,7 @@ static int sja1000_set_bittiming(struct net_device *dev)
|
||||
if (priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES)
|
||||
btr1 |= 0x80;
|
||||
|
||||
dev_info(dev->dev.parent,
|
||||
"setting BTR0=0x%02x BTR1=0x%02x\n", btr0, btr1);
|
||||
netdev_info(dev, "setting BTR0=0x%02x BTR1=0x%02x\n", btr0, btr1);
|
||||
|
||||
priv->write_reg(priv, REG_BTR0, btr0);
|
||||
priv->write_reg(priv, REG_BTR1, btr1);
|
||||
@@ -378,7 +377,7 @@ static int sja1000_err(struct net_device *dev, uint8_t isrc, uint8_t status)
|
||||
|
||||
if (isrc & IRQ_DOI) {
|
||||
/* data overrun interrupt */
|
||||
dev_dbg(dev->dev.parent, "data overrun interrupt\n");
|
||||
netdev_dbg(dev, "data overrun interrupt\n");
|
||||
cf->can_id |= CAN_ERR_CRTL;
|
||||
cf->data[1] = CAN_ERR_CRTL_RX_OVERFLOW;
|
||||
stats->rx_over_errors++;
|
||||
@@ -388,7 +387,7 @@ static int sja1000_err(struct net_device *dev, uint8_t isrc, uint8_t status)
|
||||
|
||||
if (isrc & IRQ_EI) {
|
||||
/* error warning interrupt */
|
||||
dev_dbg(dev->dev.parent, "error warning interrupt\n");
|
||||
netdev_dbg(dev, "error warning interrupt\n");
|
||||
|
||||
if (status & SR_BS) {
|
||||
state = CAN_STATE_BUS_OFF;
|
||||
@@ -429,7 +428,7 @@ static int sja1000_err(struct net_device *dev, uint8_t isrc, uint8_t status)
|
||||
}
|
||||
if (isrc & IRQ_EPI) {
|
||||
/* error passive interrupt */
|
||||
dev_dbg(dev->dev.parent, "error passive interrupt\n");
|
||||
netdev_dbg(dev, "error passive interrupt\n");
|
||||
if (status & SR_ES)
|
||||
state = CAN_STATE_ERROR_PASSIVE;
|
||||
else
|
||||
@@ -437,7 +436,7 @@ static int sja1000_err(struct net_device *dev, uint8_t isrc, uint8_t status)
|
||||
}
|
||||
if (isrc & IRQ_ALI) {
|
||||
/* arbitration lost interrupt */
|
||||
dev_dbg(dev->dev.parent, "arbitration lost interrupt\n");
|
||||
netdev_dbg(dev, "arbitration lost interrupt\n");
|
||||
alc = priv->read_reg(priv, REG_ALC);
|
||||
priv->can.can_stats.arbitration_lost++;
|
||||
stats->tx_errors++;
|
||||
@@ -495,7 +494,7 @@ irqreturn_t sja1000_interrupt(int irq, void *dev_id)
|
||||
status = priv->read_reg(priv, REG_SR);
|
||||
|
||||
if (isrc & IRQ_WUI)
|
||||
dev_warn(dev->dev.parent, "wakeup interrupt\n");
|
||||
netdev_warn(dev, "wakeup interrupt\n");
|
||||
|
||||
if (isrc & IRQ_TI) {
|
||||
/* transmission complete interrupt */
|
||||
@@ -522,7 +521,7 @@ irqreturn_t sja1000_interrupt(int irq, void *dev_id)
|
||||
priv->post_irq(priv);
|
||||
|
||||
if (n >= SJA1000_MAX_IRQ)
|
||||
dev_dbg(dev->dev.parent, "%d messages handled in ISR", n);
|
||||
netdev_dbg(dev, "%d messages handled in ISR", n);
|
||||
|
||||
return (n) ? IRQ_HANDLED : IRQ_NONE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user