nand: raw: zynq: Do not try to probe driver if nand flash is disabled

There is no reason to continue when DT status property indicates that NAND
flash is disabled. But that means that NOR flash should be present that's
why try it find it out.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
This commit is contained in:
Michal Simek 2020-02-25 14:40:42 +01:00
parent 36f1f3b640
commit 3811746ed9

View file

@ -1090,6 +1090,11 @@ static int zynq_nand_probe(struct udevice *dev)
return -ENODEV;
}
if (!ofnode_is_available(of_nand)) {
debug("Nand node in dt disabled\n");
return dm_scan_fdt_dev(dev);
}
if (ofnode_read_resource(of_nand, 0, &res)) {
printf("Failed to get nand resource\n");
return -ENODEV;