svn commit: r246887 - head/sys/dev/sdhci

Oleksandr Tymoshenko gonzo at FreeBSD.org
Sat Feb 16 23:52:15 UTC 2013


Author: gonzo
Date: Sat Feb 16 23:52:14 2013
New Revision: 246887
URL: http://svnweb.freebsd.org/changeset/base/246887

Log:
  Disable debug accidentally enabled by previous commit

Modified:
  head/sys/dev/sdhci/sdhci.c

Modified: head/sys/dev/sdhci/sdhci.c
==============================================================================
--- head/sys/dev/sdhci/sdhci.c	Sat Feb 16 23:12:06 2013	(r246886)
+++ head/sys/dev/sdhci/sdhci.c	Sat Feb 16 23:52:14 2013	(r246887)
@@ -65,7 +65,7 @@ struct sdhci_softc {
 
 static SYSCTL_NODE(_hw, OID_AUTO, sdhci, CTLFLAG_RD, 0, "sdhci driver");
 
-int	sdhci_debug = 1;
+int	sdhci_debug = 0;
 TUNABLE_INT("hw.sdhci.debug", &sdhci_debug);
 SYSCTL_INT(_hw_sdhci, OID_AUTO, debug, CTLFLAG_RW, &sdhci_debug, 0, "Debug level");
 


More information about the svn-src-head mailing list