diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-25 17:15:27 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-03-26 16:36:46 +0300 |
commit | e76ac2bf637defbe3b7fc644813be584b941ff0a (patch) | |
tree | fc925282edd69d20b8e7885909f9a50b190b9d08 /drivers/net/wireless/ath/ath6kl/usb.c | |
parent | 048f24f695cb7cf5fd78eaa4aee38ce1c2e2f8c5 (diff) | |
download | op-kernel-dev-e76ac2bf637defbe3b7fc644813be584b941ff0a.zip op-kernel-dev-e76ac2bf637defbe3b7fc644813be584b941ff0a.tar.gz |
ath6kl: add htc ops
In preparation for adding HTC pipe implementation add htc-ops.h to make
it possible dynamically choose which HTC type is used.
Needed for full USB support.
Based on the code by Ray Chen <raychen@qca.qualcomm.com>.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Signed-off-by: Ray Chen <raychen@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/usb.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/usb.c b/drivers/net/wireless/ath/ath6kl/usb.c index 325b122..991fbc5 100644 --- a/drivers/net/wireless/ath/ath6kl/usb.c +++ b/drivers/net/wireless/ath/ath6kl/usb.c @@ -368,7 +368,7 @@ static int ath6kl_usb_probe(struct usb_interface *interface, ar_usb->ar = ar; - ret = ath6kl_core_init(ar); + ret = ath6kl_core_init(ar, ATH6KL_HTC_TYPE_MBOX); if (ret) { ath6kl_err("Failed to init ath6kl core: %d\n", ret); goto err_core_free; |