diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-11-04 06:42:58 -0400 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-11-07 08:48:46 -0500 |
commit | b5169d35ed585c0d5fb49cad38f3ae1d6963a641 (patch) | |
tree | 0e00077654e52c6833dba445c827302ef11f3738 | |
parent | ce2eaca7ebf13006cb992ed2f8ce46aaf8724c71 (diff) |
mtd: nand: atmel: return error code of nand_scan_ident/tail() on error
The nand_scan_ident/tail() returns an appropriate error value when
it fails. Use it instead of the fixed error code -ENXIO.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
-rw-r--r-- | drivers/mtd/nand/atmel_nand.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c index 68b9160108c9..9ebd5ecefea6 100644 --- a/drivers/mtd/nand/atmel_nand.c +++ b/drivers/mtd/nand/atmel_nand.c | |||
@@ -2267,10 +2267,9 @@ static int atmel_nand_probe(struct platform_device *pdev) | |||
2267 | dev_info(host->dev, "No DMA support for NAND access.\n"); | 2267 | dev_info(host->dev, "No DMA support for NAND access.\n"); |
2268 | 2268 | ||
2269 | /* first scan to find the device and get the page size */ | 2269 | /* first scan to find the device and get the page size */ |
2270 | if (nand_scan_ident(mtd, 1, NULL)) { | 2270 | res = nand_scan_ident(mtd, 1, NULL); |
2271 | res = -ENXIO; | 2271 | if (res) |
2272 | goto err_scan_ident; | 2272 | goto err_scan_ident; |
2273 | } | ||
2274 | 2273 | ||
2275 | if (host->board.on_flash_bbt || on_flash_bbt) | 2274 | if (host->board.on_flash_bbt || on_flash_bbt) |
2276 | nand_chip->bbt_options |= NAND_BBT_USE_FLASH; | 2275 | nand_chip->bbt_options |= NAND_BBT_USE_FLASH; |
@@ -2304,10 +2303,9 @@ static int atmel_nand_probe(struct platform_device *pdev) | |||
2304 | } | 2303 | } |
2305 | 2304 | ||
2306 | /* second phase scan */ | 2305 | /* second phase scan */ |
2307 | if (nand_scan_tail(mtd)) { | 2306 | res = nand_scan_tail(mtd); |
2308 | res = -ENXIO; | 2307 | if (res) |
2309 | goto err_scan_tail; | 2308 | goto err_scan_tail; |
2310 | } | ||
2311 | 2309 | ||
2312 | mtd->name = "atmel_nand"; | 2310 | mtd->name = "atmel_nand"; |
2313 | res = mtd_device_register(mtd, host->board.parts, | 2311 | res = mtd_device_register(mtd, host->board.parts, |