Commit 5043e555 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Miquel Raynal

mtd: core: Align comment with an action in mtd_otp_nvmem_add()

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: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: default avatarPratyush Yadav <pratyush@kernel.org>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20240325151150.3368658-1-andriy.shevchenko@linux.intel.com
parent 1162bc2f
......@@ -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");
}
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment