Commit 7a0c18fb authored by Miquel Raynal's avatar Miquel Raynal
Browse files

mtd: rawnand: marvell: Use nand_cleanup() when the device is not yet registered



Do not call nand_release() while the MTD device has not been
registered, use nand_cleanup() instead.

Fixes: 02f26ecf ("mtd: nand: add reworked Marvell NAND controller driver")
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: default avatarBoris Brezillon <boris.brezillon@collabora.com>
Link: https://lore.kernel.org/linux-mtd/20200424164501.26719-4-miquel.raynal@bootlin.com
parent 5dcc9976
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2665,7 +2665,7 @@ static int marvell_nand_chip_init(struct device *dev, struct marvell_nfc *nfc,
		ret = mtd_device_register(mtd, NULL, 0);
	if (ret) {
		dev_err(dev, "failed to register mtd device: %d\n", ret);
		nand_release(chip);
		nand_cleanup(chip);
		return ret;
	}