Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/hpc turn pwctl_debug to 0



details:   https://anonhg.NetBSD.org/src/rev/3e099c48f112
branches:  trunk
changeset: 513497:3e099c48f112
user:      sato <sato%NetBSD.org@localhost>
date:      Thu Aug 02 09:47:18 2001 +0000

description:
turn pwctl_debug to 0

diffstat:

 sys/dev/hpc/pwctl.c |  11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diffs (25 lines):

diff -r 382f08dd514b -r 3e099c48f112 sys/dev/hpc/pwctl.c
--- a/sys/dev/hpc/pwctl.c       Thu Aug 02 06:13:33 2001 +0000
+++ b/sys/dev/hpc/pwctl.c       Thu Aug 02 09:47:18 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pwctl.c,v 1.6 2001/07/31 10:37:49 sato Exp $   */
+/*     $NetBSD: pwctl.c,v 1.7 2001/08/02 09:47:18 sato Exp $   */
 
 /*-
  * Copyright (c) 1999-2001
@@ -50,9 +50,12 @@
 
 #include "locators.h"
 
-#define PWCTLVRGIUDEBUG
-#ifdef PWCTLVRGIUDEBUG
-int    pwctl_debug = 1;
+#define PWCTLDEBUG
+#ifndef PWCTLDEBUG_CONF
+#define PWCTLDEBUG_CONF        0
+#endif
+#ifdef PWCTLDEBUG
+int    pwctl_debug = PWCTLDEBUG_CONF;
 #define        DPRINTF(arg) if (pwctl_debug) printf arg;
 #define        VPRINTF(arg) if (bootverbose) printf arg;
 #else



Home | Main Index | Thread Index | Old Index