Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 291919
b: refs/heads/master
c: 6d166fe
h: refs/heads/master
i:
  291917: 14a43f6
  291915: 151927d
  291911: 0ee3873
  291903: 29c678b
v: v3
  • Loading branch information
Paul Gortmaker authored and Grant Likely committed Feb 23, 2012
1 parent 8de909f commit 9c2fa89
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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: 2462bacd0334d918f9fcd79fc59c403b76b36f8a
refs/heads/master: 6d166fec12967063e0e709a935bba8c48fcde99e
6 changes: 3 additions & 3 deletions trunk/arch/powerpc/platforms/embedded6xx/flipper-pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ struct irq_domain * __init flipper_pic_init(struct device_node *np)

unsigned int flipper_pic_get_irq(void)
{
void __iomem *io_base = flipper_irq_domain->host_data;
void __iomem *io_base = flipper_irq_host->host_data;
int irq;
u32 irq_status;

Expand All @@ -182,7 +182,7 @@ unsigned int flipper_pic_get_irq(void)
return NO_IRQ; /* no more IRQs pending */

irq = __ffs(irq_status);
return irq_linear_revmap(flipper_irq_domain, irq);
return irq_linear_revmap(flipper_irq_host, irq);
}

/*
Expand All @@ -197,7 +197,7 @@ void __init flipper_pic_probe(void)
np = of_find_compatible_node(NULL, NULL, "nintendo,flipper-pic");
BUG_ON(!np);

flipper_irq_domain = flipper_pic_init(np);
flipper_irq_host = flipper_pic_init(np);
BUG_ON(!flipper_irq_host);

irq_set_default_host(flipper_irq_host);
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/powerpc/platforms/embedded6xx/hlwd-pic.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ struct irq_domain *hlwd_pic_init(struct device_node *np)

unsigned int hlwd_pic_get_irq(void)
{
return __hlwd_pic_get_irq(hlwd_irq_domain);
return __hlwd_pic_get_irq(hlwd_irq_host);
}

/*
Expand All @@ -213,7 +213,7 @@ void hlwd_pic_probe(void)
irq_set_handler_data(cascade_virq, host);
irq_set_chained_handler(cascade_virq,
hlwd_pic_irq_cascade);
hlwd_irq_domain = host;
hlwd_irq_host = host;
break;
}
}
Expand All @@ -227,7 +227,7 @@ void hlwd_pic_probe(void)
*/
void hlwd_quiesce(void)
{
void __iomem *io_base = hlwd_irq_domain->host_data;
void __iomem *io_base = hlwd_irq_host->host_data;

__hlwd_quiesce(io_base);
}
Expand Down

0 comments on commit 9c2fa89

Please sign in to comment.