Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76087
b: refs/heads/master
c: d6c49a7
h: refs/heads/master
i:
  76085: 8385df0
  76083: dda7c52
  76079: 7879dae
v: v3
  • Loading branch information
Haavard Skinnemoen committed Jan 25, 2008
1 parent 10f3f72 commit 42daf75
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: e4f586f280bbfa05c68f99df2db981356ee30533
refs/heads/master: d6c49a7a78fc841418bbd58bda504076f80ec51d
6 changes: 3 additions & 3 deletions trunk/arch/avr32/mach-at32ap/extint.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,15 +226,15 @@ static int __init eic_probe(struct platform_device *pdev)
pattern = eic_readl(eic, MODE);
nr_irqs = fls(pattern);

/* Trigger on falling edge unless overridden by driver */
eic_writel(eic, MODE, 0UL);
/* Trigger on low level unless overridden by driver */
eic_writel(eic, EDGE, 0UL);
eic_writel(eic, LEVEL, 0UL);

eic->chip = &eic_chip;

for (i = 0; i < nr_irqs; i++) {
set_irq_chip_and_handler(eic->first_irq + i, &eic_chip,
handle_edge_irq);
handle_level_irq);
set_irq_chip_data(eic->first_irq + i, eic);
}

Expand Down

0 comments on commit 42daf75

Please sign in to comment.