Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 231343
b: refs/heads/master
c: 7940848
h: refs/heads/master
i:
  231341: daa5182
  231339: fb127dd
  231335: 7364ae9
  231327: a3bfe33
v: v3
  • Loading branch information
Lennert Buytenhek committed Jan 13, 2011
1 parent b209f39 commit cc8f090
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 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: aab0c637f37950abd083d34e9f89311b0af61c96
refs/heads/master: 7940848aab2d16f1f6a7e77b957e40d10465f38a
16 changes: 8 additions & 8 deletions trunk/arch/arm/mach-stmp378x/stmp378x.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
/*
* IRQ handling
*/
static void stmp378x_ack_irq(unsigned int irq)
static void stmp378x_ack_irq(struct irq_data *d)
{
/* Tell ICOLL to release IRQ line */
__raw_writel(0, REGS_ICOLL_BASE + HW_ICOLL_VECTOR);
Expand All @@ -60,24 +60,24 @@ static void stmp378x_ack_irq(unsigned int irq)
(void)__raw_readl(REGS_ICOLL_BASE + HW_ICOLL_STAT);
}

static void stmp378x_mask_irq(unsigned int irq)
static void stmp378x_mask_irq(struct irq_data *d)
{
/* IRQ disable */
stmp3xxx_clearl(BM_ICOLL_INTERRUPTn_ENABLE,
REGS_ICOLL_BASE + HW_ICOLL_INTERRUPTn + irq * 0x10);
REGS_ICOLL_BASE + HW_ICOLL_INTERRUPTn + d->irq * 0x10);
}

static void stmp378x_unmask_irq(unsigned int irq)
static void stmp378x_unmask_irq(struct irq_data *d)
{
/* IRQ enable */
stmp3xxx_setl(BM_ICOLL_INTERRUPTn_ENABLE,
REGS_ICOLL_BASE + HW_ICOLL_INTERRUPTn + irq * 0x10);
REGS_ICOLL_BASE + HW_ICOLL_INTERRUPTn + d->irq * 0x10);
}

static struct irq_chip stmp378x_chip = {
.ack = stmp378x_ack_irq,
.mask = stmp378x_mask_irq,
.unmask = stmp378x_unmask_irq,
.irq_ack = stmp378x_ack_irq,
.irq_mask = stmp378x_mask_irq,
.irq_unmask = stmp378x_unmask_irq,
};

void __init stmp378x_init_irq(void)
Expand Down

0 comments on commit cc8f090

Please sign in to comment.