From c410acda068d548165f7c15732a096e185240166 Mon Sep 17 00:00:00 2001 From: peter Date: Sat, 20 Jul 2002 06:25:47 +0000 Subject: 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. --- sys/ia64/ia64/nexus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/ia64') 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)) -- cgit v1.1