mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
can: pch_can: fix invalid error codes
Errors in CAN protocol (location) are reported in data[3] of the can frame instead of data[2]. Cc: linux-stable <stable@vger.kernel.org> Signed-off-by: Olivier Sobrie <olivier@sobrie.be> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
71088c4bd9
commit
ee50e135ae
@ -560,7 +560,7 @@ static void pch_can_error(struct net_device *ndev, u32 status)
|
||||
stats->rx_errors++;
|
||||
break;
|
||||
case PCH_CRC_ERR:
|
||||
cf->data[2] |= CAN_ERR_PROT_LOC_CRC_SEQ |
|
||||
cf->data[3] |= CAN_ERR_PROT_LOC_CRC_SEQ |
|
||||
CAN_ERR_PROT_LOC_CRC_DEL;
|
||||
priv->can.can_stats.bus_error++;
|
||||
stats->rx_errors++;
|
||||
|
Loading…
Reference in New Issue
Block a user