summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2021-06-24 23:01:03 +0000
committermrg <mrg@NetBSD.org>2021-06-24 23:01:03 +0000
commitaf3d3b8fc0c8f8afd6ce60bd64181e6dc03432e4 (patch)
tree99c1ce72031347982c9b6c24b10df7ecff9edd6f /sys/dev
parent086a32abd043290d8b9b33a04c13df6b75f67fa8 (diff)
turn off ohcidebug by default. none of the other HCs do this.
next up: options to set these by default
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/ohci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index c655ccd9f8d..459dd31df25 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ohci.c,v 1.316 2021/06/15 23:39:43 riastradh Exp $ */
+/* $NetBSD: ohci.c,v 1.317 2021/06/24 23:01:03 mrg Exp $ */
/*
* Copyright (c) 1998, 2004, 2005, 2012, 2016, 2020 The NetBSD Foundation, Inc.
@@ -42,7 +42,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.316 2021/06/15 23:39:43 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.317 2021/06/24 23:01:03 mrg Exp $");
#ifdef _KERNEL_OPT
#include "opt_usb.h"
@@ -77,7 +77,7 @@ __KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.316 2021/06/15 23:39:43 riastradh Exp $")
#ifndef OHCI_DEBUG
#define ohcidebug 0
#else
-static int ohcidebug = 10;
+static int ohcidebug = 0;
SYSCTL_SETUP(sysctl_hw_ohci_setup, "sysctl hw.ohci setup")
{