mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 16:22:36 +02:00
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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user