aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2016-04-19 12:23:54 -0400
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2016-04-21 17:21:00 -0400
commit38a7a73e8ed0fa9e8cd99bb62463afbdcd23429b (patch)
tree8078a485a2d7737b6ddc3e9f0ec642eeeb818c88 /drivers/rtc
parent9a3dce62cc5640d7ea17733a2bd1b57665c232b0 (diff)
rtc: ds1307: Use irq when available for wakeup-source device
With commit 8bc2a40730ec ("rtc: ds1307: add support for the DT property 'wakeup-source'") we lost the ability for rtc irq functionality for devices that are actually hooked on a real IRQ line and have capability to wakeup as well. This is not an expected behavior. So, instead of just not requesting IRQ, skip the IRQ requirement only if interrupts are not defined for the device. Fixes: 8bc2a40730ec ("rtc: ds1307: add support for the DT property 'wakeup-source'") Reported-by: Tony Lindgren <tony@atomide.com> Cc: Michael Lange <linuxstuff@milaw.biz> Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rtc-ds1307.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-ds1307.c b/drivers/rtc/rtc-ds1307.c
index ee3cae2f212e..ecb7dbae9be9 100644
--- a/drivers/rtc/rtc-ds1307.c
+++ b/drivers/rtc/rtc-ds1307.c
@@ -1531,7 +1531,7 @@ read_rtc:
1531 return PTR_ERR(ds1307->rtc); 1531 return PTR_ERR(ds1307->rtc);
1532 } 1532 }
1533 1533
1534 if (ds1307_can_wakeup_device) { 1534 if (ds1307_can_wakeup_device && ds1307->client->irq <= 0) {
1535 /* Disable request for an IRQ */ 1535 /* Disable request for an IRQ */
1536 want_irq = false; 1536 want_irq = false;
1537 dev_info(&client->dev, "'wakeup-source' is set, request for an IRQ is disabled!\n"); 1537 dev_info(&client->dev, "'wakeup-source' is set, request for an IRQ is disabled!\n");