aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices/st_spi_fsm.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2022-06-07 17:24:58 +0200
committerMiquel Raynal <miquel.raynal@bootlin.com>2022-06-09 15:06:38 +0200
commit6f6536a0e309177882975222d73984d1b5ad3bdd (patch)
tree0d69a4d8b44838c99df0fffc8bc431ea1e21f90e /drivers/mtd/devices/st_spi_fsm.c
parentmtd: st_spi_fsm: Disable clock only after device was unregistered (diff)
downloadlinux-dev-6f6536a0e309177882975222d73984d1b5ad3bdd.tar.xz
linux-dev-6f6536a0e309177882975222d73984d1b5ad3bdd.zip
mtd: st_spi_fsm: Simplify error checking in .probe() a bit
Instead of ending each if branch with the same check, do it once unconditionally after the if block. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20220607152458.232847-5-u.kleine-koenig@pengutronix.de
Diffstat (limited to '')
-rw-r--r--drivers/mtd/devices/st_spi_fsm.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/mtd/devices/st_spi_fsm.c b/drivers/mtd/devices/st_spi_fsm.c
index 9f6d4dd8bade..54861d889c30 100644
--- a/drivers/mtd/devices/st_spi_fsm.c
+++ b/drivers/mtd/devices/st_spi_fsm.c
@@ -2084,15 +2084,12 @@ static int stfsm_probe(struct platform_device *pdev)
* Configure READ/WRITE/ERASE sequences according to platform and
* device flags.
*/
- if (info->config) {
+ if (info->config)
ret = info->config(fsm);
- if (ret)
- goto err_clk_unprepare;
- } else {
+ else
ret = stfsm_prepare_rwe_seqs_default(fsm);
- if (ret)
- goto err_clk_unprepare;
- }
+ if (ret)
+ goto err_clk_unprepare;
fsm->mtd.name = info->name;
fsm->mtd.dev.parent = &pdev->dev;