diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2011-11-11 14:18:22 +0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2011-11-13 14:34:30 +0400 |
commit | 77eab1e929c371f98c6a17a8c5f566529d3b0be2 (patch) | |
tree | 439514016e68b853dcbd43a6775271f1cfc93efb /drivers/net/wireless/ath/ath6kl/sdio.c | |
parent | d93e2c2f2109a3b804fa799079a6dd4d315af857 (diff) | |
download | linux-77eab1e929c371f98c6a17a8c5f566529d3b0be2.tar.xz |
ath6kl: add hif_type
In some rare cases core code needs to know what hif type is used. Add
a field to struct ath6kl to denote that. Hopefully this is just a
temporary solution.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/sdio.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/sdio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/sdio.c b/drivers/net/wireless/ath/ath6kl/sdio.c index d61e39a1896e..7ad57cd8937a 100644 --- a/drivers/net/wireless/ath/ath6kl/sdio.c +++ b/drivers/net/wireless/ath/ath6kl/sdio.c @@ -1237,6 +1237,7 @@ static int ath6kl_sdio_probe(struct sdio_func *func, } ar_sdio->ar = ar; + ar->hif_type = ATH6KL_HIF_TYPE_SDIO; ar->hif_priv = ar_sdio; ar->hif_ops = &ath6kl_sdio_ops; ar->bmi.max_data_size = 256; |