linux/3.3: fix compiler warnings in the plat_nand driver

SVN-Revision: 31473
lede-17.01
Gabor Juhos 2012-04-25 12:57:29 +00:00
parent 4319d95842
commit 43d67fa995
1 changed files with 3 additions and 3 deletions

View File

@ -21,13 +21,13 @@
/* Scan to find existence of the device */ /* Scan to find existence of the device */
- if (nand_scan(&data->mtd, pdata->chip.nr_chips)) { - if (nand_scan(&data->mtd, pdata->chip.nr_chips)) {
+ if (nand_scan_ident(&data->mtd, pdata->chip.nr_chips, NULL)) { + if (nand_scan_ident(&data->mtd, pdata->chip.nr_chips, NULL)) {
+ res = -ENXIO; + err = -ENXIO;
+ goto out; + goto out;
+ } + }
+ +
+ if (pdata->chip.chip_fixup) { + if (pdata->chip.chip_fixup) {
+ res = pdata->chip.chip_fixup(&data->mtd); + err = pdata->chip.chip_fixup(&data->mtd);
+ if (res) + if (err)
+ goto out; + goto out;
+ } + }
+ +