Commit a081e126 authored by Stephen Rothwell's avatar Stephen Rothwell Committed by Paul Mackerras

[POWERPC] Fix cell pmu initialisation

Make sure that the pmu is not initialised unless we are running on a cell.
Also make the init routine static.
Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent c9976797
...@@ -382,11 +382,14 @@ static irqreturn_t cbe_pm_irq(int irq, void *dev_id) ...@@ -382,11 +382,14 @@ static irqreturn_t cbe_pm_irq(int irq, void *dev_id)
return IRQ_HANDLED; return IRQ_HANDLED;
} }
int __init cbe_init_pm_irq(void) static int __init cbe_init_pm_irq(void)
{ {
unsigned int irq; unsigned int irq;
int rc, node; int rc, node;
if (!machine_is(cell))
return 0;
for_each_node(node) { for_each_node(node) {
irq = irq_create_mapping(NULL, IIC_IRQ_IOEX_PMI | irq = irq_create_mapping(NULL, IIC_IRQ_IOEX_PMI |
(node << IIC_IRQ_NODE_SHIFT)); (node << IIC_IRQ_NODE_SHIFT));
......
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