Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 351687
b: refs/heads/master
c: 4723f2b
h: refs/heads/master
i:
  351685: c042e9d
  351683: 8e6b3cd
  351679: 3d1da36
v: v3
  • Loading branch information
Fabio Baltieri authored and Marc Kleine-Budde committed Jan 26, 2013
1 parent 93ce5fb commit dc85079
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: adccadb92f0571fd0f9b2ac8011057a7de9e3e63
refs/heads/master: 4723f2b8a12b6170e1835082d8c73fa932306846
10 changes: 10 additions & 0 deletions trunk/drivers/net/can/at91_can.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

#include <linux/can/dev.h>
#include <linux/can/error.h>
#include <linux/can/led.h>

#define AT91_MB_MASK(i) ((1 << (i)) - 1)

Expand Down Expand Up @@ -641,6 +642,8 @@ static void at91_read_msg(struct net_device *dev, unsigned int mb)

stats->rx_packets++;
stats->rx_bytes += cf->can_dlc;

can_led_event(dev, CAN_LED_EVENT_RX);
}

/**
Expand Down Expand Up @@ -875,6 +878,7 @@ static void at91_irq_tx(struct net_device *dev, u32 reg_sr)
/* _NOTE_: subtract AT91_MB_TX_FIRST offset from mb! */
can_get_echo_skb(dev, mb - get_mb_tx_first(priv));
dev->stats.tx_packets++;
can_led_event(dev, CAN_LED_EVENT_TX);
}
}

Expand Down Expand Up @@ -1128,6 +1132,8 @@ static int at91_open(struct net_device *dev)
goto out_close;
}

can_led_event(dev, CAN_LED_EVENT_OPEN);

/* start chip and queuing */
at91_chip_start(dev);
napi_enable(&priv->napi);
Expand Down Expand Up @@ -1159,6 +1165,8 @@ static int at91_close(struct net_device *dev)

close_candev(dev);

can_led_event(dev, CAN_LED_EVENT_STOP);

return 0;
}

Expand Down Expand Up @@ -1321,6 +1329,8 @@ static int at91_can_probe(struct platform_device *pdev)
goto exit_free;
}

devm_can_led_init(dev);

dev_info(&pdev->dev, "device registered (reg_base=%p, irq=%d)\n",
priv->reg_base, dev->irq);

Expand Down

0 comments on commit dc85079

Please sign in to comment.