aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorWey-Yi Guy <wey-yi.w.guy@intel.com>2010-09-13 10:51:03 -0400
committerWey-Yi Guy <wey-yi.w.guy@intel.com>2010-09-17 16:18:49 -0400
commitb345f4da42da69f7136ea1b83ef38b3412e51b72 (patch)
tree9aef7e8a68f8dd6ef227f6e55253d41699b26571 /drivers
parent1d270075be62fb8212bd5afebd0bab693759a1a0 (diff)
iwlagn: minor coex API changes
Adding two new parameters in config bt API. these two parameters use the 3 reserved bytes, so there is no structure size changes. Make sure set both parameters to "zero" in order to preserve previous behavior. Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-commands.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-commands.h b/drivers/net/wireless/iwlwifi/iwl-commands.h
index 294a1d559e3c..27e250c8d4b5 100644
--- a/drivers/net/wireless/iwlwifi/iwl-commands.h
+++ b/drivers/net/wireless/iwlwifi/iwl-commands.h
@@ -2486,7 +2486,12 @@ struct iwlagn_bt_cmd {
2486 __le16 bt4_decision_time; /* unused */ 2486 __le16 bt4_decision_time; /* unused */
2487 __le16 valid; 2487 __le16 valid;
2488 u8 prio_boost; 2488 u8 prio_boost;
2489 u8 reserved[3]; 2489 /*
2490 * set IWLAGN_BT_VALID_BOOST to "1" in "valid" bitmask
2491 * if configure the following patterns
2492 */
2493 u8 tx_prio_boost; /* SW boost of WiFi tx priority */
2494 __le16 rx_prio_boost; /* SW boost of WiFi rx priority */
2490}; 2495};
2491 2496
2492#define IWLAGN_BT_SCO_ACTIVE cpu_to_le32(BIT(0)) 2497#define IWLAGN_BT_SCO_ACTIVE cpu_to_le32(BIT(0))