Module Name: src
Committed By: christos
Date: Wed Apr 27 02:47:39 UTC 2016
Modified Files:
src/sys/dev/raidframe: rf_netbsdkintf.c
Log Message:
provide an empty DPRINTF
To generate a diff of this commit:
cvs rdiff -u -r1.344 -r1.345 src/sys/dev/raidframe/rf_netbsdkintf.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/dev/raidframe/rf_netbsdkintf.c
diff -u src/sys/dev/raidframe/rf_netbsdkintf.c:1.344 src/sys/dev/raidframe/rf_netbsdkintf.c:1.345
--- src/sys/dev/raidframe/rf_netbsdkintf.c:1.344 Tue Apr 26 22:24:06 2016
+++ src/sys/dev/raidframe/rf_netbsdkintf.c Tue Apr 26 22:47:39 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_netbsdkintf.c,v 1.344 2016/04/27 02:24:06 christos Exp $ */
+/* $NetBSD: rf_netbsdkintf.c,v 1.345 2016/04/27 02:47:39 christos Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2008-2011 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@
***********************************************************/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.344 2016/04/27 02:24:06 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.345 2016/04/27 02:47:39 christos Exp $");
#ifdef _KERNEL_OPT
#include "opt_compat_netbsd.h"
@@ -163,6 +163,8 @@ int rf_kdebug_level = 0;
#ifdef DEBUG_ROOT
#define DPRINTF(a, ...) printf(a, __VA_ARGS__)
+#else
+#define DPRINTF(a, ...)
#endif
#if (RF_INCLUDE_PARITY_DECLUSTERING_DS > 0)