summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-msm/gpio.c
diff options
context:
space:
mode:
authorThomas Gleixner2011-03-24 12:41:27 +0100
committerThomas Gleixner2011-03-29 14:47:54 +0200
commit70c4fa2265dde6570fe5bd300fe56986190d7c8c (patch)
treec4f58a77e66f8142488abece593aef7572478c1c /arch/arm/mach-msm/gpio.c
parentarm: plat-omap: Cleanup irq_desc access (diff)
downloadkernel-qcow2-linux-70c4fa2265dde6570fe5bd300fe56986190d7c8c.tar.gz
kernel-qcow2-linux-70c4fa2265dde6570fe5bd300fe56986190d7c8c.tar.xz
kernel-qcow2-linux-70c4fa2265dde6570fe5bd300fe56986190d7c8c.zip
arm: msm: Use proper irq accessor functions
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/arm/mach-msm/gpio.c')
-rw-r--r--arch/arm/mach-msm/gpio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-msm/gpio.c b/arch/arm/mach-msm/gpio.c
index 176af9dcb8ee..448f2677051b 100644
--- a/arch/arm/mach-msm/gpio.c
+++ b/arch/arm/mach-msm/gpio.c
@@ -293,10 +293,10 @@ static int msm_gpio_irq_set_type(struct irq_data *d, unsigned int flow_type)
val = readl(msm_chip->regs.int_edge);
if (flow_type & IRQ_TYPE_EDGE_BOTH) {
writel(val | mask, msm_chip->regs.int_edge);
- irq_desc[d->irq].handle_irq = handle_edge_irq;
+ __irq_set_handler_locked(d->irq, handle_edge_irq);
} else {
writel(val & ~mask, msm_chip->regs.int_edge);
- irq_desc[d->irq].handle_irq = handle_level_irq;
+ __irq_set_handler_locked(d->irq, handle_level_irq);
}
if ((flow_type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {
msm_chip->both_edge_detect |= mask;