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

Commit 899b834a authored by Fabio Estevam's avatar Fabio Estevam Committed by Brian Norris
Browse files

mtd: nand: gpmi: Check for scan_bbt() error



In case of scan_bbt() failure, we should better propagate it.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Acked-by: default avatarHuang Shijie <shijie.huang@intel.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent 706d5b28
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1950,7 +1950,9 @@ static int gpmi_nand_init(struct gpmi_nand_data *this)
	ret = nand_boot_init(this);
	if (ret)
		goto err_out;
	chip->scan_bbt(mtd);
	ret = chip->scan_bbt(mtd);
	if (ret)
		goto err_out;

	ppdata.of_node = this->pdev->dev.of_node;
	ret = mtd_device_parse_register(mtd, NULL, &ppdata, NULL, 0);