Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177043
b: refs/heads/master
c: 204fc39
h: refs/heads/master
i:
  177041: cbdb2e1
  177039: d94856a
v: v3
  • Loading branch information
Roel Kluin authored and Paul Mundt committed Dec 16, 2009
1 parent aef3319 commit d1fbef3
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 1980fdc4df4778741f15f50f715cd790ccbe0a79
refs/heads/master: 204fc390d86f7087201ec4a146bc07483186c35b
7 changes: 4 additions & 3 deletions trunk/arch/sh/boards/mach-se/7722/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,16 @@ static void se7722_irq_demux(unsigned int irq, struct irq_desc *desc)
*/
void __init init_se7722_IRQ(void)
{
int i;
int i, irq;

ctrl_outw(0, IRQ01_MASK); /* disable all irqs */
ctrl_outw(0x2000, 0xb03fffec); /* mrshpc irq enable */

for (i = 0; i < SE7722_FPGA_IRQ_NR; i++) {
se7722_fpga_irq[i] = create_irq();
if (se7722_fpga_irq[i] < 0)
irq = create_irq();
if (irq < 0)
return;
se7722_fpga_irq[i] = irq;

set_irq_chip_and_handler_name(se7722_fpga_irq[i],
&se7722_irq_chip,
Expand Down

0 comments on commit d1fbef3

Please sign in to comment.