diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:19:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:26 -0400 |
commit | f56950ec3a8dc093db724bf1c1611a12c85fb260 (patch) | |
tree | 3904c708ec33aa8e1442635853c1ef6c6e27fe07 /drivers/rtc/rtc-max77686.c | |
parent | bbd05b2db60bff603c77464385f5579a34158de6 (diff) |
rtc: rtc-max77686: use devm_rtc_device_register()
devm_rtc_device_register() is device managed and makes cleanup
paths simpler. Also, this patch uses devm_request_threaded_irq().
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>
Diffstat (limited to 'drivers/rtc/rtc-max77686.c')
-rw-r--r-- | drivers/rtc/rtc-max77686.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/drivers/rtc/rtc-max77686.c b/drivers/rtc/rtc-max77686.c index df66babfc157..5a12b32f77ec 100644 --- a/drivers/rtc/rtc-max77686.c +++ b/drivers/rtc/rtc-max77686.c | |||
@@ -538,8 +538,8 @@ static int max77686_rtc_probe(struct platform_device *pdev) | |||
538 | 538 | ||
539 | device_init_wakeup(&pdev->dev, 1); | 539 | device_init_wakeup(&pdev->dev, 1); |
540 | 540 | ||
541 | info->rtc_dev = rtc_device_register("max77686-rtc", &pdev->dev, | 541 | info->rtc_dev = devm_rtc_device_register(&pdev->dev, "max77686-rtc", |
542 | &max77686_rtc_ops, THIS_MODULE); | 542 | &max77686_rtc_ops, THIS_MODULE); |
543 | 543 | ||
544 | if (IS_ERR(info->rtc_dev)) { | 544 | if (IS_ERR(info->rtc_dev)) { |
545 | dev_info(&pdev->dev, "%s: fail\n", __func__); | 545 | dev_info(&pdev->dev, "%s: fail\n", __func__); |
@@ -555,8 +555,8 @@ static int max77686_rtc_probe(struct platform_device *pdev) | |||
555 | goto err_rtc; | 555 | goto err_rtc; |
556 | info->virq = virq; | 556 | info->virq = virq; |
557 | 557 | ||
558 | ret = request_threaded_irq(virq, NULL, max77686_rtc_alarm_irq, 0, | 558 | ret = devm_request_threaded_irq(&pdev->dev, virq, NULL, |
559 | "rtc-alarm0", info); | 559 | max77686_rtc_alarm_irq, 0, "rtc-alarm0", info); |
560 | if (ret < 0) { | 560 | if (ret < 0) { |
561 | dev_err(&pdev->dev, "Failed to request alarm IRQ: %d: %d\n", | 561 | dev_err(&pdev->dev, "Failed to request alarm IRQ: %d: %d\n", |
562 | info->virq, ret); | 562 | info->virq, ret); |
@@ -569,13 +569,6 @@ err_rtc: | |||
569 | 569 | ||
570 | static int max77686_rtc_remove(struct platform_device *pdev) | 570 | static int max77686_rtc_remove(struct platform_device *pdev) |
571 | { | 571 | { |
572 | struct max77686_rtc_info *info = platform_get_drvdata(pdev); | ||
573 | |||
574 | if (info) { | ||
575 | free_irq(info->virq, info); | ||
576 | rtc_device_unregister(info->rtc_dev); | ||
577 | } | ||
578 | |||
579 | return 0; | 572 | return 0; |
580 | } | 573 | } |
581 | 574 | ||