aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/btcoex.c
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2009-09-09 16:05:32 -0700
committerJohn W. Linville <linville@tuxdriver.com>2009-10-07 16:39:23 -0400
commita36cfbca21d0acbab0840337f0b59ea58f415e50 (patch)
tree7e084520083cec501577a3ffc9953cc5bbcb51d9 /drivers/net/wireless/ath/ath9k/btcoex.c
parent8b4fc5ba896cd1b73c598d07fc51224abbfe8cdb (diff)
downloadkernel_samsung_smdk4412-a36cfbca21d0acbab0840337f0b59ea58f415e50.zip
kernel_samsung_smdk4412-a36cfbca21d0acbab0840337f0b59ea58f415e50.tar.gz
kernel_samsung_smdk4412-a36cfbca21d0acbab0840337f0b59ea58f415e50.tar.bz2
ath9k: rename ath_btcoex_supported() to ath9k_hw_btcoex_supported()
Also just pass the ath_hw as the parameter. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/btcoex.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/btcoex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath9k/btcoex.c b/drivers/net/wireless/ath/ath9k/btcoex.c
index ee2a834..5d1095f 100644
--- a/drivers/net/wireless/ath/ath9k/btcoex.c
+++ b/drivers/net/wireless/ath/ath9k/btcoex.c
@@ -45,15 +45,15 @@ static const u16 ath_subsysid_tbl[] = {
* Checks the subsystem id of the device to see if it
* supports btcoex
*/
-bool ath_btcoex_supported(u16 subsysid)
+bool ath9k_hw_btcoex_supported(struct ath_hw *ah)
{
int i;
- if (!subsysid)
+ if (!ah->hw_version.subsysid)
return false;
for (i = 0; i < ARRAY_SIZE(ath_subsysid_tbl); i++)
- if (subsysid == ath_subsysid_tbl[i])
+ if (ah->hw_version.subsysid == ath_subsysid_tbl[i])
return true;
return false;