mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
can: mcp251xfd: mcp251xfd_chip_start(): fix error handling for mcp251xfd_chip_rx_int_enable()
This patch fixes the error handling for mcp251xfd_chip_rx_int_enable().
Instead just returning the error, properly shut down the chip.
Link: https://lore.kernel.org/all/20211106201526.44292-2-mkl@pengutronix.de
Fixes: 55e5b97f00
("can: mcp25xxfd: add driver for Microchip MCP25xxFD SPI CAN")
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
691204bd66
commit
69c55f6e76
@ -1092,7 +1092,7 @@ static int mcp251xfd_chip_start(struct mcp251xfd_priv *priv)
|
||||
|
||||
err = mcp251xfd_chip_rx_int_enable(priv);
|
||||
if (err)
|
||||
return err;
|
||||
goto out_chip_stop;
|
||||
|
||||
err = mcp251xfd_chip_ecc_init(priv);
|
||||
if (err)
|
||||
|
Loading…
Reference in New Issue
Block a user