Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a44802f8 authored by Leo Song's avatar Leo Song Committed by Linus Torvalds
Browse files

drivers/rtc/rtc-pxa.c: fix alarm can't wake up system issue



Fix alarm can't wake up system issue

Signed-off-by: default avatarLeo Song <liangs@marvell.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c4243de7
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -309,8 +309,6 @@ static int pxa_rtc_proc(struct device *dev, struct seq_file *seq)
}

static const struct rtc_class_ops pxa_rtc_ops = {
	.open = pxa_rtc_open,
	.release = pxa_rtc_release,
	.read_time = pxa_rtc_read_time,
	.set_time = pxa_rtc_set_time,
	.read_alarm = pxa_rtc_read_alarm,
@@ -350,7 +348,7 @@ static int __init pxa_rtc_probe(struct platform_device *pdev)
		dev_err(dev, "No alarm IRQ resource defined\n");
		goto err_ress;
	}

	pxa_rtc_open(dev);
	ret = -ENOMEM;
	pxa_rtc->base = ioremap(pxa_rtc->ress->start,
				resource_size(pxa_rtc->ress));
@@ -396,6 +394,9 @@ static int __exit pxa_rtc_remove(struct platform_device *pdev)
{
	struct pxa_rtc *pxa_rtc = platform_get_drvdata(pdev);

	struct device *dev = &pdev->dev;
	pxa_rtc_release(dev);

	rtc_device_unregister(pxa_rtc->rtc);

	spin_lock_irq(&pxa_rtc->lock);