can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a bus error
authorFrank Jungclaus <frank.jungclaus@esd.eu>
Thu, 16 Feb 2023 19:04:48 +0000 (20:04 +0100)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Thu, 16 Feb 2023 19:59:47 +0000 (20:59 +0100)
Move the supply for cf->data[3] (bit stream position of CAN error), in
case of a bus- or protocol-error, outside of the "switch (ecc &
SJA1000_ECC_MASK){}"-statement, because this bit stream position is
independent of the error type.

Fixes: 96d8e90382dc ("can: Add driver for esd CAN-USB/2 device")
Signed-off-by: Frank Jungclaus <frank.jungclaus@esd.eu>
Link: https://lore.kernel.org/all/20230216190450.3901254-2-frank.jungclaus@esd.eu
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/usb/esd_usb.c

index 42323f5e6f3a010609b7529bb6cfec2b53860228..5e182fadd875ee654b3c23a29d6d3e04036596b6 100644 (file)
@@ -286,7 +286,6 @@ static void esd_usb_rx_event(struct esd_usb_net_priv *priv,
                                cf->data[2] |= CAN_ERR_PROT_STUFF;
                                break;
                        default:
-                               cf->data[3] = ecc & SJA1000_ECC_SEG;
                                break;
                        }
 
@@ -294,6 +293,9 @@ static void esd_usb_rx_event(struct esd_usb_net_priv *priv,
                        if (!(ecc & SJA1000_ECC_DIR))
                                cf->data[2] |= CAN_ERR_PROT_TX;
 
+                       /* Bit stream position in CAN frame as the error was detected */
+                       cf->data[3] = ecc & SJA1000_ECC_SEG;
+
                        if (priv->can.state == CAN_STATE_ERROR_WARNING ||
                            priv->can.state == CAN_STATE_ERROR_PASSIVE) {
                                cf->data[1] = (txerr > rxerr) ?