From: Darius Augulis <augulis.darius-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH] Add missing request_mem_region in probe()
Date: Wed, 01 Apr 2009 09:19:07 +0300 [thread overview]
Message-ID: <gqv14u$6c2$1@ger.gmane.org> (raw)
In-Reply-To: <20090331225612.GO19758-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>
Ben Dooks wrote:
> 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.
ok. thank you!
>
>> ---
>>
>> 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
>
prev parent reply other threads:[~2009-04-01 6:19 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
[not found] ` <20090331225612.GO19758-elnMNo+KYs3pIgCt6eIbzw@public.gmane.org>
2009-04-01 6:19 ` Darius Augulis [this message]
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='gqv14u$6c2$1@ger.gmane.org' \
--to=augulis.darius-re5jqeeqqe8avxtiumwx3w@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