svn commit: r310809 - head/sys/dev/usb/wlan

Gavin Atkinson gavin at FreeBSD.org
Fri Dec 30 11:02:17 UTC 2016


Author: gavin
Date: Fri Dec 30 11:02:16 2016
New Revision: 310809
URL: https://svnweb.freebsd.org/changeset/base/310809

Log:
  Fix bit value for a debug flag definition.
  
  Pointy hat to:	gavin

Modified:
  head/sys/dev/usb/wlan/if_run.c

Modified: head/sys/dev/usb/wlan/if_run.c
==============================================================================
--- head/sys/dev/usb/wlan/if_run.c	Fri Dec 30 09:38:45 2016	(r310808)
+++ head/sys/dev/usb/wlan/if_run.c	Fri Dec 30 11:02:16 2016	(r310809)
@@ -105,7 +105,7 @@ enum {
 	RUN_DEBUG_RSSI		= 0x00004000,	/* dump RSSI lookups */
 	RUN_DEBUG_RESET		= 0x00008000,	/* initialization progress */
 	RUN_DEBUG_CALIB		= 0x00010000,	/* calibration progress */
-	RUN_DEBUG_CMD		= 0x00010000,	/* command queue */
+	RUN_DEBUG_CMD		= 0x00020000,	/* command queue */
 	RUN_DEBUG_ANY		= 0xffffffff
 };
 


More information about the svn-src-all mailing list