summaryrefslogtreecommitdiffstats
path: root/sys/ia64
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2002-07-20 06:25:47 +0000
committerpeter <peter@FreeBSD.org>2002-07-20 06:25:47 +0000
commitc410acda068d548165f7c15732a096e185240166 (patch)
treedd6764ef9480bfc9294cc22e86df427c62d35a9e /sys/ia64
parent478ee061bb7923d81062185f068829ef907e98dd (diff)
downloadFreeBSD-src-c410acda068d548165f7c15732a096e185240166.zip
FreeBSD-src-c410acda068d548165f7c15732a096e185240166.tar.gz
Change the max IRQ from 63 to 255. I realize we have to block some out
still for the IPI vectors, but 63 isn't enough. There is an fxp at IRQ 86 on the Itanium2 box I have.
Diffstat (limited to 'sys/ia64')
-rw-r--r--sys/ia64/ia64/nexus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ia64/ia64/nexus.c b/sys/ia64/ia64/nexus.c
index 792420b..d737dab 100644
--- a/sys/ia64/ia64/nexus.c
+++ b/sys/ia64/ia64/nexus.c
@@ -164,7 +164,7 @@ nexus_probe(device_t dev)
irq_rman.rm_start = 0;
irq_rman.rm_type = RMAN_ARRAY;
irq_rman.rm_descr = "Interrupt request lines";
- irq_rman.rm_end = 63;
+ irq_rman.rm_end = 255;
if (rman_init(&irq_rman)
|| rman_manage_region(&irq_rman,
irq_rman.rm_start, irq_rman.rm_end))
OpenPOWER on IntegriCloud