diff options
author | Tomoya <tomoya-linux@dsn.okisemi.com> | 2010-12-12 20:24:25 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-13 12:24:28 -0800 |
commit | 0c78ab76a05cd788af0383354ffe819e0617f6a0 (patch) | |
tree | b00f309a80b3f108059fe3fae7cdeb0852b05603 | |
parent | fea9294c5f2902c45613681ad995ca27899d2016 (diff) |
pch_can: Add setting TEC/REC statistics processing
Add setting TEC/REC statistics processing.
Signed-off-by: Tomoya MORINAGA <tomoya-linux@dsn.okisemi.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/can/pch_can.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/can/pch_can.c b/drivers/net/can/pch_can.c index dcd8f0032fd1..4697b1cf94e8 100644 --- a/drivers/net/can/pch_can.c +++ b/drivers/net/can/pch_can.c @@ -568,6 +568,9 @@ static void pch_can_error(struct net_device *ndev, u32 status) break; } + cf->data[6] = errc & PCH_TEC; + cf->data[7] = (errc & PCH_REC) >> 8; + priv->can.state = state; netif_rx(skb); |