[SRU][N][PATCH 2/2] mtd: core: Align comment with an action in mtd_otp_nvmem_add()
Aaron Ma
aaron.ma at canonical.com
Fri Jan 10 06:03:18 UTC 2025
From: Andy Shevchenko <andriy.shevchenko at linux.intel.com>
BugLink: https://bugs.launchpad.net/bugs/2070339
The comment is related to the non-error case, make it more clear
by inverting the condition. It also makes code neater at the end.
Signed-off-by: Andy Shevchenko <andriy.shevchenko at linux.intel.com>
Reviewed-by: Pratyush Yadav <pratyush at kernel.org>
Signed-off-by: Miquel Raynal <miquel.raynal at bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20240325151150.3368658-1-andriy.shevchenko@linux.intel.com
(cherry picked from commit 5043e5553601504995300c98141230f5edd11933)
Signed-off-by: Aaron Ma <aaron.ma at canonical.com>
---
drivers/mtd/mtdcore.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
index 4c1fdf8a2588..724f917f91ba 100644
--- a/drivers/mtd/mtdcore.c
+++ b/drivers/mtd/mtdcore.c
@@ -1015,10 +1015,9 @@ static int mtd_otp_nvmem_add(struct mtd_info *mtd)
err:
nvmem_unregister(mtd->otp_user_nvmem);
/* Don't report error if OTP is not supported. */
- if (err != -EOPNOTSUPP)
- return dev_err_probe(dev, err,
- "Failed to register OTP NVMEM device\n");
- return 0;
+ if (err == -EOPNOTSUPP)
+ return 0;
+ return dev_err_probe(dev, err, "Failed to register OTP NVMEM device\n");
}
/**
--
2.43.0
More information about the kernel-team
mailing list