From ad17b1d9536594c6f4b52a99e9efbf1050bf99d9 Mon Sep 17 00:00:00 2001 From: Emmanuel Grumbach Date: Wed, 22 Jun 2016 10:51:31 +0300 Subject: [PATCH] iwlwifi: mvm: fix the channel inhibition table for Channel 14 The value for Channel 14 was wrong. Fix it. Signed-off-by: Emmanuel Grumbach Signed-off-by: Luca Coelho --- drivers/net/wireless/intel/iwlwifi/mvm/coex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/coex.c b/drivers/net/wireless/intel/iwlwifi/mvm/coex.c index 07fc9817c906..5bdb6c2c8390 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/coex.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/coex.c @@ -142,7 +142,7 @@ static const __le64 iwl_ci_mask[][3] = { cpu_to_le64(0x0) }, { - cpu_to_le64(0xFFC0000000ULL), + cpu_to_le64(0xFE00000000ULL), cpu_to_le64(0x0ULL), cpu_to_le64(0x0ULL) }, -- 2.20.1