From: Boris Brezillon <boris.brezillon@bootlin.com>
To: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Richard Weinberger <richard@nod.at>,
David Woodhouse <dwmw2@infradead.org>,
Brian Norris <computersforpeace@gmail.com>,
Marek Vasut <marek.vasut@gmail.com>,
Masahiro Yamada <yamada.masahiro@socionext.com>,
linux-mtd@lists.infradead.org, Kamal Dasu <kdasu.kdev@gmail.com>
Subject: Re: [PATCH v2 13/16] mtd: rawnand: hisi504: fix and enhance the probe function error path
Date: Tue, 27 Mar 2018 10:56:48 +0200 [thread overview]
Message-ID: <20180327105648.6e95eb1d@bbrezillon> (raw)
In-Reply-To: <20180321130157.9524-14-miquel.raynal@bootlin.com>
On Wed, 21 Mar 2018 14:01:54 +0100
Miquel Raynal <miquel.raynal@bootlin.com> wrote:
> An error after nand_scan_tail() should trigger a nand_cleanup().
> The helper mtd_device_parse_register() returns an error code that should
> be checked and nand_cleanup() called accordingly.
>
> Also prepare the migration of the hisi504_nand driver to use nand_scan()
> by cleaning the error path in the probe function.
Same here: please split that in 2 commits (the same goes for patch 14
and 15).
>
> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
> ---
> drivers/mtd/nand/raw/hisi504_nand.c | 35 ++++++++++++-----------------------
> 1 file changed, 12 insertions(+), 23 deletions(-)
>
> diff --git a/drivers/mtd/nand/raw/hisi504_nand.c b/drivers/mtd/nand/raw/hisi504_nand.c
> index 27558a67fa41..a1e009c8e556 100644
> --- a/drivers/mtd/nand/raw/hisi504_nand.c
> +++ b/drivers/mtd/nand/raw/hisi504_nand.c
> @@ -731,23 +731,19 @@ static int hisi_nfc_probe(struct platform_device *pdev)
> irq = platform_get_irq(pdev, 0);
> if (irq < 0) {
> dev_err(dev, "no IRQ resource defined\n");
> - ret = -ENXIO;
> - goto err_res;
> + return -ENXIO;
> }
>
> res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> host->iobase = devm_ioremap_resource(dev, res);
> - if (IS_ERR(host->iobase)) {
> - ret = PTR_ERR(host->iobase);
> - goto err_res;
> - }
> + if (IS_ERR(host->iobase))
> + return PTR_ERR(host->iobase);
>
> res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> host->mmio = devm_ioremap_resource(dev, res);
> if (IS_ERR(host->mmio)) {
> - ret = PTR_ERR(host->mmio);
> dev_err(dev, "devm_ioremap_resource[1] fail\n");
> - goto err_res;
> + return PTR_ERR(host->mmio);
> }
>
> mtd->name = "hisi_nand";
> @@ -770,19 +766,17 @@ static int hisi_nfc_probe(struct platform_device *pdev)
> ret = devm_request_irq(dev, irq, hinfc_irq_handle, 0x0, "nandc", host);
> if (ret) {
> dev_err(dev, "failed to request IRQ\n");
> - goto err_res;
> + return ret;
> }
>
> ret = nand_scan_ident(mtd, max_chips, NULL);
> if (ret)
> - goto err_res;
> + return ret;
>
> host->buffer = dmam_alloc_coherent(dev, mtd->writesize + mtd->oobsize,
> &host->dma_buffer, GFP_KERNEL);
> - if (!host->buffer) {
> - ret = -ENOMEM;
> - goto err_res;
> - }
> + if (!host->buffer)
> + return -ENOMEM;
>
> host->dma_oob = host->dma_buffer + mtd->writesize;
> memset(host->buffer, 0xff, mtd->writesize + mtd->oobsize);
> @@ -798,8 +792,7 @@ static int hisi_nfc_probe(struct platform_device *pdev)
> */
> default:
> dev_err(dev, "NON-2KB page size nand flash\n");
> - ret = -EINVAL;
> - goto err_res;
> + return -EINVAL;
> }
> hinfc_write(host, flag, HINFC504_CON);
>
> @@ -809,21 +802,17 @@ static int hisi_nfc_probe(struct platform_device *pdev)
> ret = nand_scan_tail(mtd);
> if (ret) {
> dev_err(dev, "nand_scan_tail failed: %d\n", ret);
> - goto err_res;
> + return ret;
> }
>
> ret = mtd_device_register(mtd, NULL, 0);
> if (ret) {
> dev_err(dev, "Err MTD partition=%d\n", ret);
> - goto err_mtd;
> + nand_cleanup(chip);
> + return ret;
> }
>
> return 0;
> -
> -err_mtd:
> - nand_release(mtd);
> -err_res:
> - return ret;
> }
>
> static int hisi_nfc_remove(struct platform_device *pdev)
--
Boris Brezillon, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2018-03-27 8:57 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-21 13:01 [PATCH v2 00/16] Fix probe functions error path Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 01/16] mtd: rawnand: brcmnand: fix probe function " Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 02/16] mtd: rawnand: cafe: " Miquel Raynal
2018-03-27 8:02 ` Boris Brezillon
2018-03-21 13:01 ` [PATCH v2 03/16] mtd: rawnand: davinci: " Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 04/16] mtd: rawnand: denali: " Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 05/16] mtd: rawnand: docg4: fix the " Miquel Raynal
2018-03-27 7:59 ` Boris Brezillon
2018-03-21 13:01 ` [PATCH v2 06/16] mtd: rawnand: fsl_elbc: fix " Miquel Raynal
2018-03-27 7:56 ` Boris Brezillon
2018-03-21 13:01 ` [PATCH v2 07/16] mtd: rawnand: fsl_ifc: " Miquel Raynal
2018-03-27 7:57 ` Boris Brezillon
2018-03-21 13:01 ` [PATCH v2 08/16] mtd: rawnand: fsmc: fix and enhance " Miquel Raynal
2018-03-27 8:05 ` Boris Brezillon
2018-03-21 13:01 ` [PATCH v2 09/16] mtd: rawnand: mxc: fix " Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 10/16] mtd: rawnand: omap2: fix the " Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 11/16] mtd: rawnand: sh_flctl: " Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 12/16] mtd: rawnand: tango: fix " Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 13/16] mtd: rawnand: hisi504: fix and enhance the " Miquel Raynal
2018-03-27 8:56 ` Boris Brezillon [this message]
2018-03-21 13:01 ` [PATCH v2 14/16] mtd: rawnand: lpc32xx_mlc: " Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 15/16] mtd: rawnand: lpc32xx_slc: " Miquel Raynal
2018-03-21 13:01 ` [PATCH v2 16/16] mtd: rawnand: s3c2410: " Miquel Raynal
2018-03-27 9:06 ` Boris Brezillon
2018-04-21 17:56 ` Miquel Raynal
2018-03-28 8:38 ` [PATCH v2 00/16] Fix probe functions " Boris Brezillon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180327105648.6e95eb1d@bbrezillon \
--to=boris.brezillon@bootlin.com \
--cc=computersforpeace@gmail.com \
--cc=dwmw2@infradead.org \
--cc=kdasu.kdev@gmail.com \
--cc=linux-mtd@lists.infradead.org \
--cc=marek.vasut@gmail.com \
--cc=miquel.raynal@bootlin.com \
--cc=richard@nod.at \
--cc=yamada.masahiro@socionext.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).