From: Sujith Manoharan Date: Thu, 13 Jun 2013 03:22:09 +0000 (+0530) Subject: ath9k: Fix ANI trigger threshold X-Git-Tag: v4.0~3714^2~78^2^2~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fca97d763dc662db446c9a6e5486ef0c77d8ad5b;p=platform%2Fkernel%2Flinux-amlogic.git ath9k: Fix ANI trigger threshold Since raising/lowering the limits based on INI has been changed, the error limit for OFDM has to be 1000, not 3500. Signed-off-by: Sujith Manoharan Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath/ath9k/ani.h b/drivers/net/wireless/ath/ath9k/ani.h index b75aea2..77a06fd 100644 --- a/drivers/net/wireless/ath/ath9k/ani.h +++ b/drivers/net/wireless/ath/ath9k/ani.h @@ -20,7 +20,7 @@ #define BEACON_RSSI(ahp) (ahp->stats.avgbrssi) /* units are errors per second */ -#define ATH9K_ANI_OFDM_TRIG_HIGH 3500 +#define ATH9K_ANI_OFDM_TRIG_HIGH 1000 #define ATH9K_ANI_OFDM_TRIG_LOW 400 #define ATH9K_ANI_CCK_TRIG_HIGH 600 #define ATH9K_ANI_CCK_TRIG_LOW 300