svn commit: r184160 - head/sys/dev/usb

Nick Hibma n_hibma at FreeBSD.org
Wed Oct 22 10:12:22 UTC 2008


Author: n_hibma
Date: Wed Oct 22 10:12:21 2008
New Revision: 184160
URL: http://svn.freebsd.org/changeset/base/184160

Log:
  Remove the debug flag.
  
  This makes the u3gstub lines and the Windows-driver CD-ROM devices
  disappear.

Modified:
  head/sys/dev/usb/u3g.c

Modified: head/sys/dev/usb/u3g.c
==============================================================================
--- head/sys/dev/usb/u3g.c	Wed Oct 22 09:30:32 2008	(r184159)
+++ head/sys/dev/usb/u3g.c	Wed Oct 22 10:12:21 2008	(r184160)
@@ -48,7 +48,6 @@
 
 #include "usbdevs.h"
 
-#define U3G_DEBUG	1
 #ifdef U3G_DEBUG
 #define DPRINTF(x...)		do { if (u3gdebug) device_printf(self, ##x); } while (0)
 #define DPRINTFN(n, x...)	do { if (u3gdebug > (n)) device_printf(self, ##x); } while (0)


More information about the svn-src-all mailing list