ipq40xx: nand: Initialize nand flash device before flashing
The DK01 board will be bricked if a nand image is flashed onto it.
Because it supports only nor and nor_plus_nand flash types.
So, this patch detects the nand flash before flashing.
Change-Id: I0e0ce2f4d72bcd6724847729170562068a00394d
Signed-off-by: Balaji Jagadeesan <bjagadee@codeaurora.org>
diff --git a/common/cmd_nand.c b/common/cmd_nand.c
index a6b67e2..190275d 100644
--- a/common/cmd_nand.c
+++ b/common/cmd_nand.c
@@ -415,7 +415,8 @@
}
dev = (int)simple_strtoul(argv[2], NULL, 10);
- set_dev(dev);
+ if (set_dev(dev))
+ return 1;
return 0;
}