Module Name: src
Committed By: skrll
Date: Sun Dec 5 10:11:46 UTC 2010
Modified Files:
src/sys/arch/hp700/hp700: intr.c
Log Message:
Reformat comments.
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 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.26 src/sys/arch/hp700/hp700/intr.c:1.27
--- src/sys/arch/hp700/hp700/intr.c:1.26 Wed Jul 7 01:18:39 2010
+++ src/sys/arch/hp700/hp700/intr.c Sun Dec 5 10:11:46 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.26 2010/07/07 01:18:39 chs Exp $ */
+/* $NetBSD: intr.c,v 1.27 2010/12/05 10:11:46 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.26 2010/07/07 01:18:39 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.27 2010/12/05 10:11:46 skrll Exp $");
#define __MUTEX_PRIVATE
@@ -171,16 +171,16 @@
panic("%s: bad interrupt bit %d", __func__, bit_pos);
/*
- * Panic if this int bit is already handled,
- * but allow shared interrupts for PCI.
+ * Panic if this int bit is already handled, but allow shared
+ * interrupts for PCI.
*/
if (int_reg->int_reg_bits_map[31 ^ bit_pos] != INT_REG_BIT_UNUSED
&& strncmp(device_xname(dv), "dino", 4) != 0 && handler == NULL)
panic("hp700_intr_establish: int already handled");
/*
- * If this interrupt bit leads us to another interrupt
- * register, simply note that in the mapping for the bit.
+ * If this interrupt bit leads us to another interrupt register,
+ * simply note that in the mapping for the bit.
*/
if (handler == NULL) {
for (idx = 0; idx < HP700_INT_BITS; idx++)