Message ID | 1430351482-59418-2-git-send-email-mickflemm@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Kalle Valo |
Headers | show |
> FFT spectral scan is a functionality that makes sense to have its own > debug flag. > > Signed-off-by: Nick Kossifidis <mickflemm@gmail.com> Thanks, 11 patches applied to wireless-drivers-next.git: 04a81e183d50 ath9k: Add a new debug flag for FFT spectral scan e33f855d4368 ath9k: Fix hanlding of maximum magnitude index 58b5e4c731b5 ath9k: Move processing of FFT frames to different functions 7fa580c19349 ath9k: Perform integrity checks when processing FFT frames 72dd2cdaade6 ath9k: Support processing of multiple FFT frames per report. 0f2c75de6422 ath9k: Skip malformed frames on normal FFT report 9acc98b9ecf9 ath9k: No need for that extra memcpy 6b8f85a91883 ath9k: Skip FFT reports if we are out of output buffers 3ea2ce3f7e63 ath9k: No need for that extra memset 2aa56cca3571 ath9k: Mix the received FFT bins to the random pool a534f3b60cac ath9k: Enable short repeat by default on ath9k_htc Kalle Valo -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/net/wireless/ath/ath.h b/drivers/net/wireless/ath/ath.h index 7e94810..65ef483 100644 --- a/drivers/net/wireless/ath/ath.h +++ b/drivers/net/wireless/ath/ath.h @@ -251,6 +251,7 @@ void ath_printk(const char *level, const struct ath_common *common, * @ATH_DBG_DFS: radar datection * @ATH_DBG_WOW: Wake on Wireless * @ATH_DBG_DYNACK: dynack handling + * @ATH_DBG_SPECTRAL_SCAN: FFT spectral scan * @ATH_DBG_ANY: enable all debugging * * The debug level is used to control the amount and type of debugging output @@ -280,6 +281,7 @@ enum ATH_DEBUG { ATH_DBG_WOW = 0x00020000, ATH_DBG_CHAN_CTX = 0x00040000, ATH_DBG_DYNACK = 0x00080000, + ATH_DBG_SPECTRAL_SCAN = 0x00100000, ATH_DBG_ANY = 0xffffffff };
FFT spectral scan is a functionality that makes sense to have its own debug flag. Signed-off-by: Nick Kossifidis <mickflemm@gmail.com> --- drivers/net/wireless/ath/ath.h | 2 ++ 1 file changed, 2 insertions(+)