qubes-linux-kernel/patches.fixes/twl6030-fix-note_interrupt-call
2010-07-07 13:12:45 +02:00

23 lines
578 B
Plaintext

From: Jeff Mahoney <jeffm@suse.com>
Subject: twl6030: Fix note_interrupt call
Patch-mainline: not yet
note_interrupt takes 4 arguments, not 3.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
---
drivers/mfd/twl6030-irq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/mfd/twl6030-irq.c
+++ b/drivers/mfd/twl6030-irq.c
@@ -143,7 +143,7 @@ static int twl6030_irq_thread(void *data
*/
if (d->status & IRQ_DISABLED)
note_interrupt(module_irq, d,
- IRQ_NONE);
+ IRQ_NONE, false);
else
d->handle_irq(module_irq, d);