can: kvaser_pciefd: Set CAN_STATE_STOPPED in kvaser_pciefd_stop()
authorJimmy Assarsson <extja@kvaser.com>
Tue, 16 May 2023 13:43:13 +0000 (15:43 +0200)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Wed, 17 May 2023 07:02:39 +0000 (09:02 +0200)
Set can.state to CAN_STATE_STOPPED in kvaser_pciefd_stop().
Without this fix, wrong CAN state was repported after the interface was
brought down.

Fixes: 26ad340e582d ("can: kvaser_pciefd: Add driver for Kvaser PCIEcan devices")
Cc: stable@vger.kernel.org
Signed-off-by: Jimmy Assarsson <extja@kvaser.com>
Link: https://lore.kernel.org/r/20230516134318.104279-2-extja@kvaser.com
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/kvaser_pciefd.c

index 53e8a91..867b421 100644 (file)
@@ -719,6 +719,7 @@ static int kvaser_pciefd_stop(struct net_device *netdev)
                iowrite32(0, can->reg_base + KVASER_PCIEFD_KCAN_IEN_REG);
                del_timer(&can->bec_poll_timer);
        }
+       can->can.state = CAN_STATE_STOPPED;
        close_candev(netdev);
 
        return ret;