projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1177bf9
)
[SPARC64]: Fix 'niu' complex IRQ probing.
author
David S. Miller
<davem@sunset.davemloft.net>
Thu, 4 Oct 2007 22:03:35 +0000
(15:03 -0700)
committer
David S. Miller
<davem@sunset.davemloft.net>
Thu, 4 Oct 2007 22:03:35 +0000
(15:03 -0700)
They should be computed the same as how we compute
them under 'virtual-devices'.
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc64/kernel/prom.c
patch
|
blob
|
history
diff --git
a/arch/sparc64/kernel/prom.c
b/arch/sparc64/kernel/prom.c
index 0614dff63d7c095b0e80711f09b336583439c0df..a246e962e5a73591d546d8d6c7ac2f950ad075d4 100644
(file)
--- a/
arch/sparc64/kernel/prom.c
+++ b/
arch/sparc64/kernel/prom.c
@@
-1046,7
+1046,8
@@
static void __init irq_trans_init(struct device_node *dp)
if (!strcmp(dp->name, "fhc") &&
!strcmp(dp->parent->name, "central"))
return central_irq_trans_init(dp);
- if (!strcmp(dp->name, "virtual-devices"))
+ if (!strcmp(dp->name, "virtual-devices") ||
+ !strcmp(dp->name, "niu"))
return sun4v_vdev_irq_trans_init(dp);
}