Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 308425
b: refs/heads/master
c: 820f3dd
h: refs/heads/master
i:
  308423: 9d873a6
v: v3
  • Loading branch information
Arnd Bergmann committed May 16, 2012
1 parent f1c8fd7 commit a870a9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: 6d49d53552b60be2caaa853c814662bc4e24428e
refs/heads/master: 820f3dd7964f1889baaaaa0c2ba45d05bb619f66
6 changes: 5 additions & 1 deletion trunk/arch/arm/mach-exynos/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,11 @@ void __init combiner_init(void __iomem *combiner_base, struct device_node *np)

for (i = 0; i < max_nr; i++) {
combiner_init_one(i, combiner_base + (i >> 2) * 0x10);
irq = np ? irq_of_parse_and_map(np, i) : IRQ_SPI(i);
irq = IRQ_SPI(i);
#ifdef CONFIG_OF
if (np)
irq = irq_of_parse_and_map(np, i);
#endif
combiner_cascade_irq(i, irq);
}
}
Expand Down

0 comments on commit a870a9e

Please sign in to comment.