mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
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>
This commit is contained in:
parent
1fbb054c7e
commit
23dfc73b5b
1 changed files with 2 additions and 1 deletions
|
|
@ -415,7 +415,8 @@ static int do_nand(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
}
|
||||
|
||||
dev = (int)simple_strtoul(argv[2], NULL, 10);
|
||||
set_dev(dev);
|
||||
if (set_dev(dev))
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue