Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 44701
b: refs/heads/master
c: 3a2aeda
h: refs/heads/master
i:
  44699: f6ba1b5
v: v3
  • Loading branch information
Dan Williams authored and Russell King committed Dec 19, 2006
1 parent 7cb4794 commit c9b1b82
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 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: 0f7d667ba341337b77b31ce81be04b16b3964cf6
refs/heads/master: 3a2aeda86d9af50510b370cb01bc38aef213a36d
22 changes: 13 additions & 9 deletions trunk/arch/arm/mach-iop13xx/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,25 +222,29 @@ iop13xx_irq_unmask3(unsigned int irq)
iop13xx_cp6_restore(cp_flags);
}

static struct irqchip iop13xx_irqchip0 = {
static struct irq_chip iop13xx_irqchip1 = {
.name = "IOP13xx-1",
.ack = iop13xx_irq_mask0,
.mask = iop13xx_irq_mask0,
.unmask = iop13xx_irq_unmask0,
};

static struct irqchip iop13xx_irqchip1 = {
static struct irq_chip iop13xx_irqchip2 = {
.name = "IOP13xx-2",
.ack = iop13xx_irq_mask1,
.mask = iop13xx_irq_mask1,
.unmask = iop13xx_irq_unmask1,
};

static struct irqchip iop13xx_irqchip2 = {
static struct irq_chip iop13xx_irqchip3 = {
.name = "IOP13xx-3",
.ack = iop13xx_irq_mask2,
.mask = iop13xx_irq_mask2,
.unmask = iop13xx_irq_unmask2,
};

static struct irqchip iop13xx_irqchip3 = {
static struct irq_chip iop13xx_irqchip4 = {
.name = "IOP13xx-4",
.ack = iop13xx_irq_mask3,
.mask = iop13xx_irq_mask3,
.unmask = iop13xx_irq_unmask3,
Expand Down Expand Up @@ -270,15 +274,15 @@ void __init iop13xx_init_irq(void)

for(i = 0; i < NR_IOP13XX_IRQS; i++) {
if (i < 32)
set_irq_chip(i, &iop13xx_irqchip0);
else if (i < 64)
set_irq_chip(i, &iop13xx_irqchip1);
else if (i < 96)
else if (i < 64)
set_irq_chip(i, &iop13xx_irqchip2);
else
else if (i < 96)
set_irq_chip(i, &iop13xx_irqchip3);
else
set_irq_chip(i, &iop13xx_irqchip4);

set_irq_handler(i, do_level_IRQ);
set_irq_handler(i, handle_level_irq);
set_irq_flags(i, IRQF_VALID | IRQF_PROBE);
}

Expand Down

0 comments on commit c9b1b82

Please sign in to comment.