diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-11-04 06:42:56 -0400 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-11-07 08:48:45 -0500 |
commit | 4e5af27e2a3a393558936b82fece1942ec49f534 (patch) | |
tree | 1e0832475c76c1dccf72644874f2e2b7067fe537 | |
parent | 6c34ad7d17849bbfaf362d7c5bed11d80c1cdab4 (diff) |
mtd: nand: pasemi: return error code of nand_scan() on error
The nand_scan() 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/pasemi_nand.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mtd/nand/pasemi_nand.c b/drivers/mtd/nand/pasemi_nand.c index 5de7591b0510..074b8b01289e 100644 --- a/drivers/mtd/nand/pasemi_nand.c +++ b/drivers/mtd/nand/pasemi_nand.c | |||
@@ -156,10 +156,9 @@ static int pasemi_nand_probe(struct platform_device *ofdev) | |||
156 | chip->bbt_options = NAND_BBT_USE_FLASH; | 156 | chip->bbt_options = NAND_BBT_USE_FLASH; |
157 | 157 | ||
158 | /* Scan to find existence of the device */ | 158 | /* Scan to find existence of the device */ |
159 | if (nand_scan(pasemi_nand_mtd, 1)) { | 159 | err = nand_scan(pasemi_nand_mtd, 1); |
160 | err = -ENXIO; | 160 | if (err) |
161 | goto out_lpc; | 161 | goto out_lpc; |
162 | } | ||
163 | 162 | ||
164 | if (mtd_device_register(pasemi_nand_mtd, NULL, 0)) { | 163 | if (mtd_device_register(pasemi_nand_mtd, NULL, 0)) { |
165 | dev_err(dev, "Unable to register MTD device\n"); | 164 | dev_err(dev, "Unable to register MTD device\n"); |