From: Ben Dooks <ben-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>
To: Darius Augulis <augulis.darius-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ben-linux-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org
Subject: Re: [PATCH] Add missing request_mem_region in probe()
Date: Tue, 31 Mar 2009 23:56:12 +0100 [thread overview]
Message-ID: <20090331225612.GO19758@fluff.org.uk> (raw)
In-Reply-To: <20090331115253.16399.53728.stgit-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
On Tue, Mar 31, 2009 at 02:52:54PM +0300, Darius Augulis wrote:
> Signed-off-by: Darius Augulis <augulis.darius-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
had a bit of problem applying, fixed the error in the remove
chunk and applied.
Next time, let's have something in the patch body saying what
is going on.
> ---
>
> drivers/i2c/busses/i2c-imx.c | 20 +++++++++++++-------
> 1 files changed, 13 insertions(+), 7 deletions(-)
>
>
> diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c
> index 3296380..515bbed 100644
> --- a/drivers/i2c/busses/i2c-imx.c
> +++ b/drivers/i2c/busses/i2c-imx.c
> @@ -483,6 +483,11 @@ static int __init i2c_imx_probe(struct platform_device *pdev)
> goto fail1;
> }
>
> + if (!request_mem_region(res->start, res_size, DRIVER_NAME)) {
> + ret = -EBUSY;
> + goto fail2;
> + }
> +
> /* Setup i2c_imx driver structure */
> strcpy(i2c_imx->adapter.name, pdev->name);
> i2c_imx->adapter.owner = THIS_MODULE;
> @@ -498,7 +503,7 @@ static int __init i2c_imx_probe(struct platform_device *pdev)
> if (IS_ERR(i2c_imx->clk)) {
> ret = PTR_ERR(i2c_imx->clk);
> dev_err(&pdev->dev, "can't get I2C clock\n");
> - goto fail2;
> + goto fail3;
> }
> clk_enable(i2c_imx->clk);
>
> @@ -506,7 +511,7 @@ static int __init i2c_imx_probe(struct platform_device *pdev)
> ret = request_irq(i2c_imx->irq, i2c_imx_isr, 0, pdev->name, i2c_imx);
> if (ret) {
> dev_err(&pdev->dev, "can't claim irq %d\n", i2c_imx->irq);
> - goto fail3;
> + goto fail4;
> }
>
> /* Init queue */
> @@ -529,7 +534,7 @@ static int __init i2c_imx_probe(struct platform_device *pdev)
> ret = i2c_add_numbered_adapter(&i2c_imx->adapter);
> if (ret < 0) {
> dev_err(&pdev->dev, "registration failed\n");
> - goto fail4;
> + goto fail5;
> }
>
> /* Set up platform driver data */
> @@ -546,11 +551,13 @@ static int __init i2c_imx_probe(struct platform_device *pdev)
>
> return 0; /* Return OK */
>
> -fail4:
> +fail5:
> free_irq(i2c_imx->irq, i2c_imx);
> -fail3:
> +fail4:
> clk_disable(i2c_imx->clk);
> clk_put(i2c_imx->clk);
> +fail3:
> + release_mem_region(i2c_imx->res->start, resource_size(res));
> fail2:
> kfree(i2c_imx);
> fail1:
> @@ -589,8 +596,7 @@ static int __exit i2c_imx_remove(struct platform_device *pdev)
> clk_put(i2c_imx->clk);
>
> /* Release memory */
> - release_mem_region(i2c_imx->res->start,
> - i2c_imx->res->end - i2c_imx->res->start + 1);
> + release_mem_region(i2c_imx->res->start, resource_size(i2c_imx->res));
> iounmap(i2c_imx->base);
> kfree(i2c_imx);
> return 0;
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Ben (ben-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org, http://www.fluff.org/)
'a smiley only costs 4 bytes'
next prev parent reply other threads:[~2009-03-31 22:56 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-31 11:52 [PATCH] Add missing request_mem_region in probe() Darius Augulis
[not found] ` <20090331115253.16399.53728.stgit-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-03-31 11:57 ` Darius Augulis
2009-03-31 22:56 ` Ben Dooks [this message]
[not found] ` <20090331225612.GO19758-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>
2009-04-01 6:19 ` Darius Augulis
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=20090331225612.GO19758@fluff.org.uk \
--to=ben-elnmno+kys3pigct6eibzw@public.gmane.org \
--cc=augulis.darius-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=ben-linux-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org \
--cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
/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