Commit 41f3863b authored by Lennert Buytenhek's avatar Lennert Buytenhek Committed by Benjamin Herrenschmidt

powerpc: sysdev/mv64x60_pic irq_data conversion.

Signed-off-by: default avatarLennert Buytenhek <buytenh@secretlab.ca>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 94347cb3
...@@ -76,9 +76,9 @@ static struct irq_host *mv64x60_irq_host; ...@@ -76,9 +76,9 @@ static struct irq_host *mv64x60_irq_host;
* mv64x60_chip_low functions * mv64x60_chip_low functions
*/ */
static void mv64x60_mask_low(unsigned int virq) static void mv64x60_mask_low(struct irq_data *d)
{ {
int level2 = irq_map[virq].hwirq & MV64x60_LEVEL2_MASK; int level2 = irq_map[d->irq].hwirq & MV64x60_LEVEL2_MASK;
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&mv64x60_lock, flags); spin_lock_irqsave(&mv64x60_lock, flags);
...@@ -89,9 +89,9 @@ static void mv64x60_mask_low(unsigned int virq) ...@@ -89,9 +89,9 @@ static void mv64x60_mask_low(unsigned int virq)
(void)in_le32(mv64x60_irq_reg_base + MV64X60_IC_CPU0_INTR_MASK_LO); (void)in_le32(mv64x60_irq_reg_base + MV64X60_IC_CPU0_INTR_MASK_LO);
} }
static void mv64x60_unmask_low(unsigned int virq) static void mv64x60_unmask_low(struct irq_data *d)
{ {
int level2 = irq_map[virq].hwirq & MV64x60_LEVEL2_MASK; int level2 = irq_map[d->irq].hwirq & MV64x60_LEVEL2_MASK;
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&mv64x60_lock, flags); spin_lock_irqsave(&mv64x60_lock, flags);
...@@ -104,18 +104,18 @@ static void mv64x60_unmask_low(unsigned int virq) ...@@ -104,18 +104,18 @@ static void mv64x60_unmask_low(unsigned int virq)
static struct irq_chip mv64x60_chip_low = { static struct irq_chip mv64x60_chip_low = {
.name = "mv64x60_low", .name = "mv64x60_low",
.mask = mv64x60_mask_low, .irq_mask = mv64x60_mask_low,
.mask_ack = mv64x60_mask_low, .irq_mask_ack = mv64x60_mask_low,
.unmask = mv64x60_unmask_low, .irq_unmask = mv64x60_unmask_low,
}; };
/* /*
* mv64x60_chip_high functions * mv64x60_chip_high functions
*/ */
static void mv64x60_mask_high(unsigned int virq) static void mv64x60_mask_high(struct irq_data *d)
{ {
int level2 = irq_map[virq].hwirq & MV64x60_LEVEL2_MASK; int level2 = irq_map[d->irq].hwirq & MV64x60_LEVEL2_MASK;
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&mv64x60_lock, flags); spin_lock_irqsave(&mv64x60_lock, flags);
...@@ -126,9 +126,9 @@ static void mv64x60_mask_high(unsigned int virq) ...@@ -126,9 +126,9 @@ static void mv64x60_mask_high(unsigned int virq)
(void)in_le32(mv64x60_irq_reg_base + MV64X60_IC_CPU0_INTR_MASK_HI); (void)in_le32(mv64x60_irq_reg_base + MV64X60_IC_CPU0_INTR_MASK_HI);
} }
static void mv64x60_unmask_high(unsigned int virq) static void mv64x60_unmask_high(struct irq_data *d)
{ {
int level2 = irq_map[virq].hwirq & MV64x60_LEVEL2_MASK; int level2 = irq_map[d->irq].hwirq & MV64x60_LEVEL2_MASK;
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&mv64x60_lock, flags); spin_lock_irqsave(&mv64x60_lock, flags);
...@@ -141,18 +141,18 @@ static void mv64x60_unmask_high(unsigned int virq) ...@@ -141,18 +141,18 @@ static void mv64x60_unmask_high(unsigned int virq)
static struct irq_chip mv64x60_chip_high = { static struct irq_chip mv64x60_chip_high = {
.name = "mv64x60_high", .name = "mv64x60_high",
.mask = mv64x60_mask_high, .irq_mask = mv64x60_mask_high,
.mask_ack = mv64x60_mask_high, .irq_mask_ack = mv64x60_mask_high,
.unmask = mv64x60_unmask_high, .irq_unmask = mv64x60_unmask_high,
}; };
/* /*
* mv64x60_chip_gpp functions * mv64x60_chip_gpp functions
*/ */
static void mv64x60_mask_gpp(unsigned int virq) static void mv64x60_mask_gpp(struct irq_data *d)
{ {
int level2 = irq_map[virq].hwirq & MV64x60_LEVEL2_MASK; int level2 = irq_map[d->irq].hwirq & MV64x60_LEVEL2_MASK;
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&mv64x60_lock, flags); spin_lock_irqsave(&mv64x60_lock, flags);
...@@ -163,9 +163,9 @@ static void mv64x60_mask_gpp(unsigned int virq) ...@@ -163,9 +163,9 @@ static void mv64x60_mask_gpp(unsigned int virq)
(void)in_le32(mv64x60_gpp_reg_base + MV64x60_GPP_INTR_MASK); (void)in_le32(mv64x60_gpp_reg_base + MV64x60_GPP_INTR_MASK);
} }
static void mv64x60_mask_ack_gpp(unsigned int virq) static void mv64x60_mask_ack_gpp(struct irq_data *d)
{ {
int level2 = irq_map[virq].hwirq & MV64x60_LEVEL2_MASK; int level2 = irq_map[d->irq].hwirq & MV64x60_LEVEL2_MASK;
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&mv64x60_lock, flags); spin_lock_irqsave(&mv64x60_lock, flags);
...@@ -178,9 +178,9 @@ static void mv64x60_mask_ack_gpp(unsigned int virq) ...@@ -178,9 +178,9 @@ static void mv64x60_mask_ack_gpp(unsigned int virq)
(void)in_le32(mv64x60_gpp_reg_base + MV64x60_GPP_INTR_CAUSE); (void)in_le32(mv64x60_gpp_reg_base + MV64x60_GPP_INTR_CAUSE);
} }
static void mv64x60_unmask_gpp(unsigned int virq) static void mv64x60_unmask_gpp(struct irq_data *d)
{ {
int level2 = irq_map[virq].hwirq & MV64x60_LEVEL2_MASK; int level2 = irq_map[d->irq].hwirq & MV64x60_LEVEL2_MASK;
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&mv64x60_lock, flags); spin_lock_irqsave(&mv64x60_lock, flags);
...@@ -193,9 +193,9 @@ static void mv64x60_unmask_gpp(unsigned int virq) ...@@ -193,9 +193,9 @@ static void mv64x60_unmask_gpp(unsigned int virq)
static struct irq_chip mv64x60_chip_gpp = { static struct irq_chip mv64x60_chip_gpp = {
.name = "mv64x60_gpp", .name = "mv64x60_gpp",
.mask = mv64x60_mask_gpp, .irq_mask = mv64x60_mask_gpp,
.mask_ack = mv64x60_mask_ack_gpp, .irq_mask_ack = mv64x60_mask_ack_gpp,
.unmask = mv64x60_unmask_gpp, .irq_unmask = mv64x60_unmask_gpp,
}; };
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment