rtc: rtc-twl: Switch to using threaded irq
authorIlkka Koskinen <ilkka.koskinen@nokia.com>
Wed, 16 Mar 2011 06:07:14 +0000 (06:07 +0000)
committerJohn Stultz <john.stultz@linaro.org>
Wed, 10 Aug 2011 22:54:25 +0000 (15:54 -0700)
The driver is accessing to i2c bus in interrupt handler.
Therefore, it should use threaded irq.

Signed-off-by: Ilkka Koskinen <ilkka.koskinen@nokia.com>
Acked-by: Balaji T K <balajitk@ti.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
drivers/rtc/rtc-twl.c

index 9a81f77..1963cdd 100644 (file)
@@ -462,7 +462,7 @@ static int __devinit twl_rtc_probe(struct platform_device *pdev)
        if (ret < 0)
                goto out1;
 
-       ret = request_irq(irq, twl_rtc_interrupt,
+       ret = request_threaded_irq(irq, NULL, twl_rtc_interrupt,
                                IRQF_TRIGGER_RISING,
                                dev_name(&rtc->dev), rtc);
        if (ret < 0) {