iwlwifi: fix antenna bitmask
authorJohannes Berg <johannes.berg@intel.com>
Fri, 24 Aug 2012 09:13:17 +0000 (11:13 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 4 Sep 2012 12:17:16 +0000 (14:17 +0200)
The device only supports a maximum of three
antennas, and only three bits are used, the
fourth bit is the A-MPDU indicator.

The only consequence of this is reporting
invalid information in radiotap, so this
isn't an important change.

Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/iwlwifi/dvm/commands.h

index 4a361c55c543f5fdf491c265509f89f50903d815..cee8a05b5f697844d1224709d350902f75ce9f95 100644 (file)
@@ -1055,7 +1055,7 @@ struct iwl_wep_cmd {
 #define RX_RES_PHY_FLAGS_MOD_CCK_MSK           cpu_to_le16(1 << 1)
 #define RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK    cpu_to_le16(1 << 2)
 #define RX_RES_PHY_FLAGS_NARROW_BAND_MSK       cpu_to_le16(1 << 3)
-#define RX_RES_PHY_FLAGS_ANTENNA_MSK           0xf0
+#define RX_RES_PHY_FLAGS_ANTENNA_MSK           0x70
 #define RX_RES_PHY_FLAGS_ANTENNA_POS           4
 
 #define RX_RES_STATUS_SEC_TYPE_MSK     (0x7 << 8)
This page took 0.027697 seconds and 5 git commands to generate.