* Re: [PATCH 1/2] extcon: Set platform drvdata in gpio_extcon_probe() and fix irq leak
@ 2012-06-19 10:19 함명주
2012-06-19 10:32 ` Axel Lin
2012-06-19 16:43 ` Greg Kroah-Hartman
0 siblings, 2 replies; 4+ messages in thread
From: 함명주 @ 2012-06-19 10:19 UTC (permalink / raw)
To: Axel Lin, linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman, Mike Lockwood, myungjoo.ham@gmail.com
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=euc-kr, Size: 1614 bytes --]
> Add missing platform_set_drvdata() in gpio_extcon_probe(), otherwise calling
> platform_get_drvdata in gpio_extcon_remove() returns NULL.
>
> Also add missing free_irq call in gpio_extcon_remove().
>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Thanks!
Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
I'll apply this patch to the extcon-for-next.
I would appear in http://git.infradead.org/users/kmpark/linux-samsung/shortlog/refs/heads/extcon-for-next soon after syncing servers.
Cheers!
MyungJoo
> ---
> drivers/extcon/extcon_gpio.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/extcon/extcon_gpio.c b/drivers/extcon/extcon_gpio.c
> index fe7a07b..8a0dcc1 100644
> --- a/drivers/extcon/extcon_gpio.c
> +++ b/drivers/extcon/extcon_gpio.c
> @@ -125,6 +125,7 @@ static int __devinit gpio_extcon_probe(struct platform_device *pdev)
> if (ret < 0)
> goto err_request_irq;
>
> + platform_set_drvdata(pdev, extcon_data);
> /* Perform initial detection */
> gpio_extcon_work(&extcon_data->work.work);
>
> @@ -146,6 +147,7 @@ static int __devexit gpio_extcon_remove(struct platform_device *pdev)
> struct gpio_extcon_data *extcon_data = platform_get_drvdata(pdev);
>
> cancel_delayed_work_sync(&extcon_data->work);
> + free_irq(extcon_data->irq, extcon_data);
> gpio_free(extcon_data->gpio);
> extcon_dev_unregister(&extcon_data->edev);
> devm_kfree(&pdev->dev, extcon_data);
> --
> 1.7.9.5
>
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH 1/2] extcon: Set platform drvdata in gpio_extcon_probe() and fix irq leak
2012-06-19 10:19 [PATCH 1/2] extcon: Set platform drvdata in gpio_extcon_probe() and fix irq leak 함명주
@ 2012-06-19 10:32 ` Axel Lin
2012-06-19 16:43 ` Greg Kroah-Hartman
1 sibling, 0 replies; 4+ messages in thread
From: Axel Lin @ 2012-06-19 10:32 UTC (permalink / raw)
To: myungjoo.ham
Cc: linux-kernel@vger.kernel.org, Greg Kroah-Hartman, Mike Lockwood,
myungjoo.ham@gmail.com
2012/6/19 함명주 <myungjoo.ham@samsung.com>:
>> Add missing platform_set_drvdata() in gpio_extcon_probe(), otherwise calling
>> platform_get_drvdata in gpio_extcon_remove() returns NULL.
>>
>> Also add missing free_irq call in gpio_extcon_remove().
>>
>> Signed-off-by: Axel Lin <axel.lin@gmail.com>
>
> Thanks!
>
>
> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
>
> I'll apply this patch to the extcon-for-next.
> I would appear in http://git.infradead.org/users/kmpark/linux-samsung/shortlog/refs/heads/extcon-for-next soon after syncing servers.
Hi MyungJoo,
These patches are already in today's linux-next tree.
It's already picked up by Greg.
Regards,
Axel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] extcon: Set platform drvdata in gpio_extcon_probe() and fix irq leak
2012-06-19 10:19 [PATCH 1/2] extcon: Set platform drvdata in gpio_extcon_probe() and fix irq leak 함명주
2012-06-19 10:32 ` Axel Lin
@ 2012-06-19 16:43 ` Greg Kroah-Hartman
1 sibling, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2012-06-19 16:43 UTC (permalink / raw)
To: 함명주
Cc: Axel Lin, linux-kernel@vger.kernel.org, Mike Lockwood,
myungjoo.ham@gmail.com
On Tue, Jun 19, 2012 at 10:19:07AM +0000, 함명주 wrote:
> > Add missing platform_set_drvdata() in gpio_extcon_probe(), otherwise calling
> > platform_get_drvdata in gpio_extcon_remove() returns NULL.
> >
> > Also add missing free_irq call in gpio_extcon_remove().
> >
> > Signed-off-by: Axel Lin <axel.lin@gmail.com>
>
> Thanks!
>
>
> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
>
> I'll apply this patch to the extcon-for-next.
> I would appear in http://git.infradead.org/users/kmpark/linux-samsung/shortlog/refs/heads/extcon-for-next soon after syncing servers.
Does this mean you are going to have a separate extcon git tree
somewhere, feeding into linux-next, and sending stuff directly to Linus?
I don't see an entry in the MAINTAINERS file saying this, which is why I
was picking up extcon patches, should I not be doing this?
confused,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] extcon: Set platform drvdata in gpio_extcon_probe() and fix irq leak
@ 2012-06-16 3:55 Axel Lin
0 siblings, 0 replies; 4+ messages in thread
From: Axel Lin @ 2012-06-16 3:55 UTC (permalink / raw)
To: linux-kernel; +Cc: MyungJoo Ham, Greg Kroah-Hartman, Mike Lockwood
Add missing platform_set_drvdata() in gpio_extcon_probe(), otherwise calling
platform_get_drvdata in gpio_extcon_remove() returns NULL.
Also add missing free_irq call in gpio_extcon_remove().
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
drivers/extcon/extcon_gpio.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/extcon/extcon_gpio.c b/drivers/extcon/extcon_gpio.c
index fe7a07b..8a0dcc1 100644
--- a/drivers/extcon/extcon_gpio.c
+++ b/drivers/extcon/extcon_gpio.c
@@ -125,6 +125,7 @@ static int __devinit gpio_extcon_probe(struct platform_device *pdev)
if (ret < 0)
goto err_request_irq;
+ platform_set_drvdata(pdev, extcon_data);
/* Perform initial detection */
gpio_extcon_work(&extcon_data->work.work);
@@ -146,6 +147,7 @@ static int __devexit gpio_extcon_remove(struct platform_device *pdev)
struct gpio_extcon_data *extcon_data = platform_get_drvdata(pdev);
cancel_delayed_work_sync(&extcon_data->work);
+ free_irq(extcon_data->irq, extcon_data);
gpio_free(extcon_data->gpio);
extcon_dev_unregister(&extcon_data->edev);
devm_kfree(&pdev->dev, extcon_data);
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-06-19 16:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-19 10:19 [PATCH 1/2] extcon: Set platform drvdata in gpio_extcon_probe() and fix irq leak 함명주
2012-06-19 10:32 ` Axel Lin
2012-06-19 16:43 ` Greg Kroah-Hartman
-- strict thread matches above, loose matches on Subject: below --
2012-06-16 3:55 Axel Lin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox