Fix a typo in a debug printf message.
This commit is contained in:
parent
3a6e61c6ab
commit
79f82cdd0a
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: intr.c,v 1.21 2007/03/09 06:45:19 thorpej Exp $ */
|
||||
/* $NetBSD: intr.c,v 1.22 2007/08/04 16:31:21 tsutsui Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994-1998 Mark Brinicombe.
|
||||
|
@ -36,7 +36,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.21 2007/03/09 06:45:19 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.22 2007/08/04 16:31:21 tsutsui Exp $");
|
||||
|
||||
#include "opt_irqstats.h"
|
||||
|
||||
|
@ -224,7 +224,7 @@ dump_spl_masks(void)
|
|||
int loop;
|
||||
|
||||
for (loop = 0; loop < _SPL_LEVELS; ++loop) {
|
||||
printf("spl_mask[%d]=%08x splsmask[%d]=%08x\n", loop,
|
||||
printf("spl_masks[%d]=%08x splsmask[%d]=%08x\n", loop,
|
||||
spl_masks[loop], loop, spl_smasks[loop]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue