summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authoroster <oster@NetBSD.org>2002-09-23 04:02:29 +0000
committeroster <oster@NetBSD.org>2002-09-23 04:02:29 +0000
commit7db6bcd2eda704339d586458999771a9f52a2d80 (patch)
treee4b95acc6348cf48942c4525ee0784ab86ebfeb1 /sys/dev/raidframe
parent7370acda446162e5ab992651a58213e97dd48e8e (diff)
CheckCvscanState never prints the file and line number. Thanks to Simon B.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_cvscan.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/raidframe/rf_cvscan.c b/sys/dev/raidframe/rf_cvscan.c
index 034ff570c3a..c5f8f11c448 100644
--- a/sys/dev/raidframe/rf_cvscan.c
+++ b/sys/dev/raidframe/rf_cvscan.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_cvscan.c,v 1.9 2002/09/21 00:37:14 oster Exp $ */
+/* $NetBSD: rf_cvscan.c,v 1.10 2002/09/23 04:02:29 oster Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -35,7 +35,7 @@
******************************************************************************/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_cvscan.c,v 1.9 2002/09/21 00:37:14 oster Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_cvscan.c,v 1.10 2002/09/23 04:02:29 oster Exp $");
#include <dev/raidframe/raidframevar.h>
#include "rf_alloclist.h"
@@ -46,12 +46,12 @@ __KERNEL_RCSID(0, "$NetBSD: rf_cvscan.c,v 1.9 2002/09/21 00:37:14 oster Exp $");
#include "rf_debugMem.h"
#include "rf_general.h"
-#define DO_CHECK_STATE(_hdr_) CheckCvscanState((_hdr_), __FILE__, __LINE__)
+#define DO_CHECK_STATE(_hdr_) CheckCvscanState((_hdr_))
#define pri_ok(p) ( ((p) == RF_IO_NORMAL_PRIORITY) || ((p) == RF_IO_LOW_PRIORITY))
static void
-CheckCvscanState(RF_CvscanHeader_t * hdr, char *file, int line)
+CheckCvscanState(RF_CvscanHeader_t * hdr)
{
long i, key;
RF_DiskQueueData_t *tmp;