summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2010-01-01 05:00:42 +0000
committerSteve French <sfrench@us.ibm.com>2010-01-01 05:00:42 +0000
commitdfae0acd26aebbbafde038617892df728194f4ae (patch)
tree3a2de5b95c007ae89106356bdb0175af27f263f2
parent6a5fa2362b628ee950080bef8895a6fb62f58ab4 (diff)
parentcd6e125c58ae1561bedb6ea6f70b00d6c2599d62 (diff)
downloadop-kernel-dev-dfae0acd26aebbbafde038617892df728194f4ae.zip
op-kernel-dev-dfae0acd26aebbbafde038617892df728194f4ae.tar.gz
Merge branch 'master' of /pub/scm/linux/kernel/git/torvalds/linux-2.6
-rw-r--r--drivers/mfd/twl4030-irq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mfd/twl4030-irq.c b/drivers/mfd/twl4030-irq.c
index 20d29ba..9df9a5a 100644
--- a/drivers/mfd/twl4030-irq.c
+++ b/drivers/mfd/twl4030-irq.c
@@ -568,12 +568,12 @@ static void twl4030_sih_do_edge(struct work_struct *work)
bytes[byte] &= ~(0x03 << off);
- spin_lock_irq(&d->lock);
+ raw_spin_lock_irq(&d->lock);
if (d->status & IRQ_TYPE_EDGE_RISING)
bytes[byte] |= BIT(off + 1);
if (d->status & IRQ_TYPE_EDGE_FALLING)
bytes[byte] |= BIT(off + 0);
- spin_unlock_irq(&d->lock);
+ raw_spin_unlock_irq(&d->lock);
edge_change &= ~BIT(i);
}
OpenPOWER on IntegriCloud