Commit c1879fe8 authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds

rtc: rtc-max8997: use devm_request_threaded_irq()

Use devm_request_threaded_irq() to make cleanup paths more simple.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 83a72c87
...@@ -495,7 +495,8 @@ static int max8997_rtc_probe(struct platform_device *pdev) ...@@ -495,7 +495,8 @@ static int max8997_rtc_probe(struct platform_device *pdev)
} }
info->virq = virq; info->virq = virq;
ret = request_threaded_irq(virq, NULL, max8997_rtc_alarm_irq, 0, ret = devm_request_threaded_irq(&pdev->dev, virq, NULL,
max8997_rtc_alarm_irq, 0,
"rtc-alarm0", info); "rtc-alarm0", info);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "Failed to request alarm IRQ: %d: %d\n", dev_err(&pdev->dev, "Failed to request alarm IRQ: %d: %d\n",
...@@ -514,10 +515,8 @@ static int max8997_rtc_remove(struct platform_device *pdev) ...@@ -514,10 +515,8 @@ static int max8997_rtc_remove(struct platform_device *pdev)
{ {
struct max8997_rtc_info *info = platform_get_drvdata(pdev); struct max8997_rtc_info *info = platform_get_drvdata(pdev);
if (info) { if (info)
free_irq(info->virq, info);
rtc_device_unregister(info->rtc_dev); rtc_device_unregister(info->rtc_dev);
}
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment