Module Name: src
Committed By: skrll
Date: Wed May 23 11:04:54 UTC 2012
Modified Files:
src/sys/arch/hp700/hp700: intr.c
Log Message:
Update a comment.
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sys/arch/hp700/hp700/intr.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/hp700/hp700/intr.c
diff -u src/sys/arch/hp700/hp700/intr.c:1.39 src/sys/arch/hp700/hp700/intr.c:1.40
--- src/sys/arch/hp700/hp700/intr.c:1.39 Wed May 23 07:31:31 2012
+++ src/sys/arch/hp700/hp700/intr.c Wed May 23 11:04:54 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.39 2012/05/23 07:31:31 skrll Exp $ */
+/* $NetBSD: intr.c,v 1.40 2012/05/23 11:04:54 skrll Exp $ */
/* $OpenBSD: intr.c,v 1.27 2009/12/31 12:52:35 jsing Exp $ */
/*
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.39 2012/05/23 07:31:31 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.40 2012/05/23 11:04:54 skrll Exp $");
#define __MUTEX_PRIVATE
@@ -178,8 +178,9 @@ hp700_intr_establish(int ipl, int (*hand
panic("%s: bad interrupt bit %d", __func__, bit_pos);
/*
- * Panic if this interrupt bit is already handled, but allow shared
- * interrupts for PCI.
+ * Panic if this interrupt bit is already handled, but allow
+ * shared interrupts for cascaded registers, e.g. dino and gsc
+ * XXX This could be improved.
*/
if (ir->ir_bits_map[31 ^ bit_pos] != IR_BIT_UNUSED &&
!IR_BIT_NESTED_P(ir->ir_bits_map[31 ^ bit_pos]) &&