Module Name: src Committed By: mrg Date: Thu Jan 24 08:22:38 UTC 2013
Modified Files: src/sys/dev/usb: uaudio.c Log Message: oops, turn uaudiodebug off by default again. To generate a diff of this commit: cvs rdiff -u -r1.134 -r1.135 src/sys/dev/usb/uaudio.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/usb/uaudio.c diff -u src/sys/dev/usb/uaudio.c:1.134 src/sys/dev/usb/uaudio.c:1.135 --- src/sys/dev/usb/uaudio.c:1.134 Tue Jan 22 12:40:43 2013 +++ src/sys/dev/usb/uaudio.c Thu Jan 24 08:22:38 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: uaudio.c,v 1.134 2013/01/22 12:40:43 jmcneill Exp $ */ +/* $NetBSD: uaudio.c,v 1.135 2013/01/24 08:22:38 mrg Exp $ */ /* * Copyright (c) 1999, 2012 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: uaudio.c,v 1.134 2013/01/22 12:40:43 jmcneill Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uaudio.c,v 1.135 2013/01/24 08:22:38 mrg Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -90,7 +90,7 @@ __KERNEL_RCSID(0, "$NetBSD: uaudio.c,v 1 printf("%s[%d:%d]: "x, __func__, l->l_proc->p_pid, l->l_lid, y); \ } \ } while (0) -int uaudiodebug = 6; +int uaudiodebug = 0; #else #define DPRINTF(x,y...) #define DPRINTFN_CLEAN(n,x...)