Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4d02423e authored by Boris Brezillon's avatar Boris Brezillon
Browse files

mtd: nand: gpmi: Fix gpmi_nand_init() error path



The GPMI driver is wrongly assuming that nand_release() can safely be
called on an uninitialized/unregistered NAND device.

Add a new err_nand_cleanup label in the error path and only execute if
nand_scan_tail() succeeded.

Note that we now call nand_cleanup() instead of nand_release()
(nand_release() is actually grouping the mtd_device_unregister() and
nand_cleanup() in one call) because there's no point in trying to
unregister a device that has never been registered.

Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
Reviewed-by: default avatarMarek Vasut <marek.vasut@gmail.com>
Acked-by: default avatarHan Xu <han.xu@nxp.com>
Reviewed-by: default avatarMarek Vasut <marek.vasut@gmail.com>
parent d7e578c8
Loading
Loading
Loading
Loading
+6 −4
Original line number Original line Diff line number Diff line
@@ -2055,18 +2055,20 @@ static int gpmi_nand_init(struct gpmi_nand_data *this)


	ret = nand_boot_init(this);
	ret = nand_boot_init(this);
	if (ret)
	if (ret)
		goto err_out;
		goto err_nand_cleanup;
	ret = chip->scan_bbt(mtd);
	ret = chip->scan_bbt(mtd);
	if (ret)
	if (ret)
		goto err_out;
		goto err_nand_cleanup;


	ret = mtd_device_register(mtd, NULL, 0);
	ret = mtd_device_register(mtd, NULL, 0);
	if (ret)
	if (ret)
		goto err_out;
		goto err_nand_cleanup;
	return 0;
	return 0;


err_nand_cleanup:
	nand_cleanup(chip);
err_out:
err_out:
	gpmi_nand_exit(this);
	gpmi_free_dma_buffer(this);
	return ret;
	return ret;
}
}