Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 231309
b: refs/heads/master
c: 5450260
h: refs/heads/master
i:
  231307: 3442022
v: v3
  • Loading branch information
Lennert Buytenhek committed Jan 13, 2011
1 parent aa7255d commit 0c998cf
Show file tree
Hide file tree
Showing 2 changed files with 10 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: f013c98dd2dee05334ab48573a7b674e0ee63b9d
refs/heads/master: 54502602c13dd2e7d1244942b9b3638ebe944760
18 changes: 9 additions & 9 deletions trunk/arch/arm/mach-aaec2000/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,25 +68,25 @@ void __init aaec2000_map_io(void)
/*
* Interrupt handling routines
*/
static void aaec2000_int_ack(unsigned int irq)
static void aaec2000_int_ack(struct irq_data *d)
{
IRQ_INTSR = 1 << irq;
IRQ_INTSR = 1 << d->irq;
}

static void aaec2000_int_mask(unsigned int irq)
static void aaec2000_int_mask(struct irq_data *d)
{
IRQ_INTENC |= (1 << irq);
IRQ_INTENC |= (1 << d->irq);
}

static void aaec2000_int_unmask(unsigned int irq)
static void aaec2000_int_unmask(struct irq_data *d)
{
IRQ_INTENS |= (1 << irq);
IRQ_INTENS |= (1 << d->irq);
}

static struct irq_chip aaec2000_irq_chip = {
.ack = aaec2000_int_ack,
.mask = aaec2000_int_mask,
.unmask = aaec2000_int_unmask,
.irq_ack = aaec2000_int_ack,
.irq_mask = aaec2000_int_mask,
.irq_unmask = aaec2000_int_unmask,
};

void __init aaec2000_init_irq(void)
Expand Down

0 comments on commit 0c998cf

Please sign in to comment.