Skip to content

Commit

Permalink
can: mcp251xfd: mcp251xfd_chip_clock_enable(): simplify return
Browse files Browse the repository at this point in the history
This patch simplifies the return of the mcp251xfd_chip_clock_enable()
function by direct returning the error.

Link: https://lore.kernel.org/r/20210128104644.2982125-8-mkl@pengutronix.de
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  • Loading branch information
Marc Kleine-Budde committed Jan 29, 2021
1 parent 49ffacb commit dfe99ba
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/net/can/spi/mcp251xfd/mcp251xfd-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -596,11 +596,9 @@ static int mcp251xfd_chip_clock_enable(const struct mcp251xfd_priv *priv)
"Timeout waiting for Oscillator Ready (osc=0x%08x, osc_reference=0x%08x)\n",
osc, osc_reference);
return -ETIMEDOUT;
} else if (err) {
return err;
}

return 0;
return err;
}

static int mcp251xfd_chip_softreset_do(const struct mcp251xfd_priv *priv)
Expand Down

0 comments on commit dfe99ba

Please sign in to comment.