Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/hp700/hp700 Reformat comments.



details:   https://anonhg.NetBSD.org/src/rev/7b2e968b0a0f
branches:  trunk
changeset: 759303:7b2e968b0a0f
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sun Dec 05 10:11:46 2010 +0000

description:
Reformat comments.

diffstat:

 sys/arch/hp700/hp700/intr.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (39 lines):

diff -r 7bbcb1a08205 -r 7b2e968b0a0f sys/arch/hp700/hp700/intr.c
--- a/sys/arch/hp700/hp700/intr.c       Sun Dec 05 09:54:34 2010 +0000
+++ b/sys/arch/hp700/hp700/intr.c       Sun Dec 05 10:11:46 2010 +0000
@@ -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++)



Home | Main Index | Thread Index | Old Index