linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Grant Likely <grant.likely@secretlab.ca>
To: Axel Lin <axel.lin@gmail.com>
Cc: linux-kernel@vger.kernel.org,
	Samuel Ortiz <sameo@linux.intel.com>,
	Juha Yrjola <juha.yrjola@nokia.com>,
	spi-devel-general@lists.sourceforge.net
Subject: Re: [PATCH] spi: omap2-mcspi: fix omap2_mcspi_probe error handling
Date: Wed, 22 Jun 2011 09:29:05 -0600	[thread overview]
Message-ID: <BANLkTimQ55xBwzoxnSAKznG-GTHZ+LtShw@mail.gmail.com> (raw)
In-Reply-To: <1308751077.4846.1.camel@phoenix>

On Wed, Jun 22, 2011 at 7:57 AM, Axel Lin <axel.lin@gmail.com> wrote:
> This patch includes below fixes for error handling:
> 1. return proper error if kcalloc for mcspi->dma_channels fails
> 2. return proper error if omap2_mcspi_master_setup fails
> 3. properly release allocated resources in error paths and
>   improve the naming of goto labels.

Is this to be applied immediately, or queued up in linux-next for v3.1?

g.

>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> ---
>  drivers/spi/spi-omap2-mcspi.c |   39 +++++++++++++++++++++------------------
>  1 files changed, 21 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/spi/spi-omap2-mcspi.c b/drivers/spi/spi-omap2-mcspi.c
> index fde3a2d..74f444d 100644
> --- a/drivers/spi/spi-omap2-mcspi.c
> +++ b/drivers/spi/spi-omap2-mcspi.c
> @@ -1087,7 +1087,7 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
>        struct omap2_mcspi_platform_config *pdata = pdev->dev.platform_data;
>        struct omap2_mcspi      *mcspi;
>        struct resource         *r;
> -       int                     status = 0, i;
> +       int                     status, i;
>
>        master = spi_alloc_master(&pdev->dev, sizeof *mcspi);
>        if (master == NULL) {
> @@ -1114,12 +1114,12 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
>        r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>        if (r == NULL) {
>                status = -ENODEV;
> -               goto err1;
> +               goto err_put_master;
>        }
>        if (!request_mem_region(r->start, resource_size(r),
>                                dev_name(&pdev->dev))) {
>                status = -EBUSY;
> -               goto err1;
> +               goto err_put_master;
>        }
>
>        r->start += pdata->regs_offset;
> @@ -1129,7 +1129,7 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
>        if (!mcspi->base) {
>                dev_dbg(&pdev->dev, "can't ioremap MCSPI\n");
>                status = -ENOMEM;
> -               goto err2;
> +               goto err_release_mem_region;
>        }
>
>        mcspi->dev = &pdev->dev;
> @@ -1143,8 +1143,10 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
>                        sizeof(struct omap2_mcspi_dma),
>                        GFP_KERNEL);
>
> -       if (mcspi->dma_channels == NULL)
> -               goto err2;
> +       if (mcspi->dma_channels == NULL) {
> +               status = -ENOMEM;
> +               goto err_iounmap;
> +       }
>
>        for (i = 0; i < master->num_chipselect; i++) {
>                char dma_ch_name[14];
> @@ -1156,7 +1158,7 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
>                if (!dma_res) {
>                        dev_dbg(&pdev->dev, "cannot get DMA RX channel\n");
>                        status = -ENODEV;
> -                       break;
> +                       goto err_free_dma_channels;
>                }
>
>                mcspi->dma_channels[i].dma_rx_channel = -1;
> @@ -1167,7 +1169,7 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
>                if (!dma_res) {
>                        dev_dbg(&pdev->dev, "cannot get DMA TX channel\n");
>                        status = -ENODEV;
> -                       break;
> +                       goto err_free_dma_channels;
>                }
>
>                mcspi->dma_channels[i].dma_tx_channel = -1;
> @@ -1176,23 +1178,24 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
>
>        pm_runtime_enable(&pdev->dev);
>
> -       if (status || omap2_mcspi_master_setup(mcspi) < 0)
> -               goto err3;
> +       status = omap2_mcspi_master_setup(mcspi);
> +       if (status)
> +               goto err_free_dma_channels;
>
>        status = spi_register_master(master);
>        if (status < 0)
> -               goto err4;
> +               goto err_free_dma_channels;
>
> -       return status;
> +       return 0;
>
> -err4:
> -       spi_master_put(master);
> -err3:
> +err_free_dma_channels:
>        kfree(mcspi->dma_channels);
> -err2:
> -       release_mem_region(r->start, resource_size(r));
> +err_iounmap:
>        iounmap(mcspi->base);
> -err1:
> +err_release_mem_region:
> +       release_mem_region(r->start, resource_size(r));
> +err_put_master:
> +       spi_master_put(master);
>        return status;
>  }
>
> --
> 1.7.4.1
>
>
>
>



-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

  reply	other threads:[~2011-06-22 15:29 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-22 13:57 [PATCH] spi: omap2-mcspi: fix omap2_mcspi_probe error handling Axel Lin
2011-06-22 15:29 ` Grant Likely [this message]
     [not found]   ` <BANLkTimQ55xBwzoxnSAKznG-GTHZ+LtShw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-06-27  4:23     ` Axel Lin

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=BANLkTimQ55xBwzoxnSAKznG-GTHZ+LtShw@mail.gmail.com \
    --to=grant.likely@secretlab.ca \
    --cc=axel.lin@gmail.com \
    --cc=juha.yrjola@nokia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sameo@linux.intel.com \
    --cc=spi-devel-general@lists.sourceforge.net \
    /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).