Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243282
b: refs/heads/master
c: ce4ed25
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent c9bdb97 commit 7e71c9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 70c4fa2265dde6570fe5bd300fe56986190d7c8c
refs/heads/master: ce4ed256b8c2e67f6743cdb9a5ac1904ff9d2f0d
6 changes: 3 additions & 3 deletions trunk/arch/arm/mach-vt8500/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,15 @@ static int vt8500_irq_set_type(unsigned int irq, unsigned int flow_type)
return -EINVAL;
case IRQF_TRIGGER_HIGH:
dctr |= VT8500_TRIGGER_HIGH;
irq_desc[orig_irq].handle_irq = handle_level_irq;
__irq_set_handler_locked(orig_irq, handle_level_irq);
break;
case IRQF_TRIGGER_FALLING:
dctr |= VT8500_TRIGGER_FALLING;
irq_desc[orig_irq].handle_irq = handle_edge_irq;
__irq_set_handler_locked(orig_irq, handle_edge_irq);
break;
case IRQF_TRIGGER_RISING:
dctr |= VT8500_TRIGGER_RISING;
irq_desc[orig_irq].handle_irq = handle_edge_irq;
__irq_set_handler_locked(orig_irq, handle_edge_irq);
break;
}
writeb(dctr, base + VT8500_IC_DCTR + irq);
Expand Down

0 comments on commit 7e71c9b

Please sign in to comment.