From 3656b9615bf2a4a7ee18ccee81730d8be02b82f8 Mon Sep 17 00:00:00 2001 From: Gavin Atkinson Date: Fri, 30 Dec 2016 11:02:16 +0000 Subject: [PATCH] Fix bit value for a debug flag definition. Pointy hat to: gavin --- sys/dev/usb/wlan/if_run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/usb/wlan/if_run.c b/sys/dev/usb/wlan/if_run.c index 70ecb6af7bf..7603e303eaa 100644 --- a/sys/dev/usb/wlan/if_run.c +++ b/sys/dev/usb/wlan/if_run.c @@ -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 };