Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 192139
b: refs/heads/master
c: d6ada25
h: refs/heads/master
i:
  192137: 188aa83
  192135: acadd3e
v: v3
  • Loading branch information
Arve Hjønnevåg authored and Daniel Walker committed May 12, 2010
1 parent 79c27b5 commit 9234fdf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 36cf1b55b4caa188f2d070bb18a69ebe3c70580f
refs/heads/master: d6ada2577601576099934448a0391bb37296b3db
4 changes: 2 additions & 2 deletions trunk/arch/arm/mach-msm/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ static int msm_irq_set_type(unsigned int irq, unsigned int flow_type)

if (flow_type & (IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)) {
writel(readl(treg) | b, treg);
set_irq_handler(irq, handle_edge_irq);
irq_desc[irq].handle_irq = handle_edge_irq;
}
if (flow_type & (IRQF_TRIGGER_HIGH | IRQF_TRIGGER_LOW)) {
writel(readl(treg) & (~b), treg);
set_irq_handler(irq, handle_level_irq);
irq_desc[irq].handle_irq = handle_level_irq;
}
return 0;
}
Expand Down

0 comments on commit 9234fdf

Please sign in to comment.