summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2010-03-11 07:21:24 +0000
committerskrll <skrll@NetBSD.org>2010-03-11 07:21:24 +0000
commitbc84d3f145e41d4afec828ca915ed86a3462b2b2 (patch)
tree3f98c3326b280fc4a0708e687c09974c61413a77 /sys
parent6b05fe22efed078ce8d57515d7f72d01df9e3d3e (diff)
KNF
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/hp700/hp700/intr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hp700/hp700/intr.c b/sys/arch/hp700/hp700/intr.c
index 3b3c5f88c0a..db7aefdb8cc 100644
--- a/sys/arch/hp700/hp700/intr.c
+++ b/sys/arch/hp700/hp700/intr.c
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.21 2010/03/11 07:20:15 skrll Exp $ */
+/* $NetBSD: intr.c,v 1.22 2010/03/11 07:21:24 skrll Exp $ */
/*
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.21 2010/03/11 07:20:15 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.22 2010/03/11 07:21:24 skrll Exp $");
#define __MUTEX_PRIVATE
@@ -315,7 +315,7 @@ hp700_intr_init(void)
imask[IPL_HIGH] |= imask[IPL_SCHED];
/* Now go back and flesh out the spl levels on each bit. */
- for(bit_pos = 0; bit_pos < HP700_INT_BITS; bit_pos++) {
+ for (bit_pos = 0; bit_pos < HP700_INT_BITS; bit_pos++) {
int_bit = hp700_int_bits + bit_pos;
if (int_bit->int_bit_reg == NULL)
continue;
@@ -326,7 +326,7 @@ hp700_intr_init(void)
printf("vmmask %08x schedmask %08x highmask %08x\n",
imask[IPL_VM], imask[IPL_SCHED], imask[IPL_HIGH]);
#if 0
- for(bit_pos = 0; bit_pos < NIPL; bit_pos++)
+ for (bit_pos = 0; bit_pos < NIPL; bit_pos++)
printf("imask[%d] == %08x\n", bit_pos, imask[bit_pos]);
#endif