Skip to content

Commit

Permalink
rtc: rtc-tps80031: use devm_request_threaded_irq()
Browse files Browse the repository at this point in the history
Use devm_request_threaded_irq() to make cleanup paths more simple.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Jingoo Han authored and Linus Torvalds committed Feb 22, 2013
1 parent 14b149e commit 6d77bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/rtc/rtc-tps80031.c
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ static int tps80031_rtc_probe(struct platform_device *pdev)
return ret;
}

ret = request_threaded_irq(rtc->irq, NULL, tps80031_rtc_irq,
ret = devm_request_threaded_irq(&pdev->dev, rtc->irq, NULL,
tps80031_rtc_irq,
IRQF_ONESHOT | IRQF_EARLY_RESUME,
dev_name(&pdev->dev), rtc);
if (ret < 0) {
Expand All @@ -302,7 +303,6 @@ static int tps80031_rtc_remove(struct platform_device *pdev)
{
struct tps80031_rtc *rtc = platform_get_drvdata(pdev);

free_irq(rtc->irq, rtc);
rtc_device_unregister(rtc->rtc);
return 0;
}
Expand Down

0 comments on commit 6d77bdc

Please sign in to comment.