Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Dec 2016 11:02:16 +0000 (UTC)
From:      Gavin Atkinson <gavin@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r310809 - head/sys/dev/usb/wlan
Message-ID:  <201612301102.uBUB2GSF042262@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612301102.uBUB2GSF042262>