Oleksij Rempel [Sun, 27 Apr 2014 10:13:09 +0000 (12:13 +0200)]
adf_os_io.h: add some ios
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sun, 27 Apr 2014 08:49:35 +0000 (10:49 +0200)]
remove ath_hal_reg_write_target and OS_REG_WRITE
instead use iowrite32_mac
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sun, 27 Apr 2014 08:21:43 +0000 (10:21 +0200)]
remove some unused io defines
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 26 Apr 2014 19:55:14 +0000 (21:55 +0200)]
remove ath_hal_reg_read_target and OS_REG_READ
and use ioread32
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 28 Apr 2014 14:59:37 +0000 (16:59 +0200)]
init.c: mark wlan_task as noreturn
and remove break state from the loop. It will never jump to flash.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 28 Apr 2014 10:08:31 +0000 (12:08 +0200)]
make sure app_start is always at the entry point
Add ".boot" section to the linker and make sure app_start()
is always there. Till now every change in app start was cousing
randome issues.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Adrian Chadd [Fri, 23 May 2014 16:01:03 +0000 (09:01 -0700)]
Merge pull request #55 from biergaizi/master
Fix Array Out of Bounds in rcSibUpdate_ht()
Adrian Chadd [Fri, 23 May 2014 15:59:23 +0000 (08:59 -0700)]
Merge pull request #52 from olerem/move_build_2
Move build
Tom Li [Fri, 23 May 2014 15:48:39 +0000 (23:48 +0800)]
Fix Array Out of Bounds in rcSibUpdate_ht()
In rcSibUpdate_ht(), we clear
validPhyRateIndex[WLAN_RC_PHY_MAX][MAX_TX_RATE_PHY]
by a for loop.
But, validPhyRateIndex was defined with
validPhyRateIndex[WLAN_RC_PHY_MAX][MAX_TX_RATE_TBL],
and MAX_TX_RATE_TBL is always greater than MAX_TX_RATE_PHY,
caused the out of bounds array access.
This commit corrects MAX_TX_RATE_PHY to MAX_TX_RATE_TBL,
and remove MAX_TX_RATE_PHY from ratectrl.h because it is
no longer be used.
Signed-off-by: Tom Li <biergaizi@member.fsf.org>
Oleksij Rempel [Mon, 28 Apr 2014 16:36:33 +0000 (18:36 +0200)]
remove some identical usb related headers
k2 and magpie have lots of identical header.
remove some of them.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 28 Apr 2014 16:22:40 +0000 (18:22 +0200)]
move sboot to the root directory
we do not need it for build any more. But we may need it for research.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 28 Apr 2014 15:49:40 +0000 (17:49 +0200)]
CMakeLists.txt: do not use include from build
we will need it to avoid confusions
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 28 Apr 2014 15:48:18 +0000 (17:48 +0200)]
make a local copy of includes needed by magpie
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Adrian Chadd [Fri, 4 Apr 2014 10:38:45 +0000 (03:38 -0700)]
Merge pull request #51 from chunyeow/master
ath9k_htc_firmware: fix the offset of CCMP header for mesh data frame
Adrian Chadd [Fri, 4 Apr 2014 10:36:24 +0000 (03:36 -0700)]
Merge pull request #50 from olerem/testing
testing: collection of different changes
Chun-Yeow Yeoh [Fri, 4 Apr 2014 09:01:15 +0000 (17:01 +0800)]
ath9k_htc_firmware: fix the offset of CCMP header for mesh data frame
Mesh data frame uses at least 3 addresses scheme. So set the offset
correctly while fetching the CCMP header. Previously, we are not
able to do HW encryption for unicast data frame. Applying this
patch will allow HW encryption and avoid loading ath9k_htc.ko using
"nohwcrypt=1".
Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com>
Oleksij Rempel [Sun, 23 Mar 2014 06:48:07 +0000 (07:48 +0100)]
Merge branch 'master' of https://github.com/sdfsdfsdfdsdf/open-ath9k-htc-firmware into testing
Oleksij Rempel [Sun, 23 Mar 2014 06:40:12 +0000 (07:40 +0100)]
Merge branch 'installCmake' of https://github.com/mattflaschen/open-ath9k-htc-firmware into testing
Oleksij Rempel [Sun, 23 Mar 2014 06:34:40 +0000 (07:34 +0100)]
Merge branch 'hif' into next
Oleksij Rempel [Sun, 23 Mar 2014 06:30:53 +0000 (07:30 +0100)]
Merge branch 'speed' into next
sdfsdfsdfdsdf [Sat, 15 Mar 2014 20:32:07 +0000 (20:32 +0000)]
Download through HTTPS for authenticity and privacy (fixes #48)
Oleksij Rempel [Sat, 14 Dec 2013 21:02:48 +0000 (22:02 +0100)]
init.c: do cold reboot on exception
Currently, if we get exception, FW will print exception info, send crash
pattern to the host and reboot. We can reduce deadtime by doing cold reboot
instead of simple reboot. The difference is, that usb interface will be
reseted and usb subsystem will reinit driver. In this case we even do not need
to update host driver.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Matthew Flaschen [Mon, 21 Oct 2013 04:58:20 +0000 (00:58 -0400)]
Note in README that cmake must be installed
Oleksij Rempel [Sat, 14 Sep 2013 15:22:23 +0000 (17:22 +0200)]
split ath_hal_reg_read_tgt and reuse it in ath_hal_reg_rmw_tgt
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 14 Sep 2013 14:44:15 +0000 (16:44 +0200)]
split ath_hal_reg_write_tgt and reuse it in ath_hal_reg_rmw_tgt
make sure we do not have redundand code in ath_hal_reg_rmw_tgt
and ath_hal_reg_write_tgt.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 14 Sep 2013 07:06:38 +0000 (09:06 +0200)]
wmi: add new command WMI_REG_RMW_CMDID
rmw is a compund of reg_read and reg_write. By doint it on FW side
we reduce usb traffic.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 30 Sep 2013 19:52:12 +0000 (21:52 +0200)]
use only one usb_defs.h
usb_defs.h for k2 and magpie are identical. So it
is better to use one.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 30 Sep 2013 18:58:28 +0000 (20:58 +0200)]
add new ZM_SOC_USB_DMA_RESET_OFFSET register
add and use ZM_SOC_USB_DMA_RESET_OFFSET
instead if magic number 0x118
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 30 Sep 2013 14:54:14 +0000 (16:54 +0200)]
usb_api_k2_patch.c: use same style like usb_api_magpie_patch.c
Just other comment styles and tabs instead of spaces.
Some commented A_PRINFs was removed.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 30 Sep 2013 14:10:33 +0000 (16:10 +0200)]
hif/usb_api: unify platform specific patch file names
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Mon, 30 Sep 2013 10:05:31 +0000 (12:05 +0200)]
hif/usb_api: remove dup code - _fw_usbfifo_recv_command
and _fw_usbfifo_init
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 28 Sep 2013 21:45:48 +0000 (23:45 +0200)]
hif/usb_api: remove dup code - bGet_descriptor_patch
In this patch i also remove eeprom check. It was never
executed any way.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 28 Sep 2013 19:46:52 +0000 (21:46 +0200)]
hif/usb_api: remove dup code - ep6 fix
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Fri, 27 Sep 2013 22:17:41 +0000 (00:17 +0200)]
hif/usb_api: remove dup code - usb_reg_in_patch
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Fri, 27 Sep 2013 21:50:17 +0000 (23:50 +0200)]
hif/usb_api: remove dup code - usb_reg_out_patch
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Adrian Chadd [Fri, 23 Aug 2013 07:48:04 +0000 (00:48 -0700)]
Merge pull request #38 from olerem/next
Fixes for reboot issues
Oleksij Rempel [Tue, 13 Aug 2013 13:53:46 +0000 (15:53 +0200)]
remove transfer type patches for EP3 and EP4
here is comment from kernel source which has enought explanation:
* Some buggy high speed devices have bulk endpoints using
* maxpacket sizes other than 512. High speed HCDs may not
* be able to handle that particular bug, so let's warn...
in our case EP3 and EP4 have maxpacket sizes = 64!!!
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Tue, 13 Aug 2013 10:23:28 +0000 (12:23 +0200)]
patch bcdDevice value for magpie to make easy firmware detection.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Tue, 13 Aug 2013 10:12:15 +0000 (12:12 +0200)]
fix u8 to u16 conversation
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Tue, 13 Aug 2013 09:31:04 +0000 (11:31 +0200)]
patch bcdDevice value for k2 to make easy firmware detection.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Tue, 13 Aug 2013 09:23:14 +0000 (11:23 +0200)]
help linker to find u8UsbDeviceDescriptor on k2
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Wed, 24 Jul 2013 08:26:18 +0000 (10:26 +0200)]
k2_fw_usb_api: workaround for EP4 bug.
This patch is workaround for xhci related issue.
After usb port resume FIFO on EP4 can't accept Bulck stream longer then
64 Bytes.
Currently we have no better way then just completly reset chip.
Side effect of this workaround - disconnection event for this device.
It means, module will be reloaded and we will get new usb minor id.
This is why, we should not do it on each firmware restart.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Fri, 19 Jul 2013 18:37:36 +0000 (20:37 +0200)]
docs: add chip images for documentation
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Thu, 18 Jul 2013 14:44:46 +0000 (16:44 +0200)]
k2_fw_usb_api: prevent buffer overflow.
This was reproduced on intel USB 3.0 controller.
After getting corrupt packet we was jumping bejond allocated buffer.
Insted of oopsing we can at lest warn hier.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Thu, 18 Jul 2013 13:02:52 +0000 (15:02 +0200)]
k2_fw_usb_api: add warning on oversized buffer.
Currently i do not know how to fix this bug. It is reproducable on:
Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
After module reload, first packet with data size over 64 Byte will brake EP4
buffer. Size register will show bigger value as existing size of buffer.
Last buffer part will be corrupt.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sun, 7 Jul 2013 18:43:07 +0000 (20:43 +0200)]
if_ath.c: make ath_hal_reg_write_tgt more readable
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Fri, 5 Jul 2013 19:33:31 +0000 (21:33 +0200)]
k2_fw_usb_api: fix typo in usb reg address
we was writing to wrond register.
0x100ae = ep3
0x100af = ep4
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Fri, 5 Jul 2013 19:31:43 +0000 (21:31 +0200)]
k2_fw_usb_api: fix typo in reg address
this was writing defenetly to wrong address.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Wed, 3 Jul 2013 18:45:50 +0000 (20:45 +0200)]
k2_fw_usb_api: add delay after mac reset
We need some time between MAC reset and next operation. This will
avoid some freezes on module and firmware reload.
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Adrian Chadd [Fri, 5 Jul 2013 21:18:55 +0000 (14:18 -0700)]
Merge pull request #37 from olerem/clean_2
Clean work: Nuke HAL.
Oleksij Rempel [Sun, 23 Jun 2013 20:14:36 +0000 (22:14 +0200)]
Merge branch 'clean' into clean_2
Oleksij Rempel [Sun, 23 Jun 2013 20:13:23 +0000 (22:13 +0200)]
remove unused HAL_OPMODE
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Adrian Chadd [Thu, 30 May 2013 18:05:21 +0000 (11:05 -0700)]
Merge pull request #34 from olerem/rc
SImplefy STBC handler v4
Adrian Chadd [Thu, 16 May 2013 18:01:00 +0000 (11:01 -0700)]
Update documentation to reflect the current reality.
Issue: #28
Oleksij Rempel [Sat, 11 May 2013 21:07:12 +0000 (23:07 +0200)]
remove unused variables ah_set11nVirtualMoreFrag
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 21:03:22 +0000 (23:03 +0200)]
remove unused variable in ah_set11nBurstDuration
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 20:59:44 +0000 (22:59 +0200)]
remove unused variable in ah_clr11nAggr
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 20:57:00 +0000 (22:57 +0200)]
remove unused variables ah_set11nAggrLast
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 20:49:11 +0000 (22:49 +0200)]
remove unused variable ah_set11nAggrMiddle
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 20:45:45 +0000 (22:45 +0200)]
remove unused variables in ah_set11nAggrFirst
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 20:28:23 +0000 (22:28 +0200)]
use one ar5416Set11nAggrFirst_20 for merlin and k2
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 20:12:53 +0000 (22:12 +0200)]
remove unused variables in ah_set11nRateScenario
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 20:04:46 +0000 (22:04 +0200)]
remove unused variables in ah_set11nTxDesc
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 20:01:41 +0000 (22:01 +0200)]
remove unused variables on ah_fillKeyTxDesc
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 19:58:07 +0000 (21:58 +0200)]
remove unused variable in ah_fillTxDesc
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 19:28:07 +0000 (21:28 +0200)]
remove unused variable in ah_setupTxDesc
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 18:56:20 +0000 (20:56 +0200)]
remove unused variable in ah_setupRxDesc
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 18:47:31 +0000 (20:47 +0200)]
remove unused variables in ar5416Attach
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 16:32:12 +0000 (18:32 +0200)]
remove unused variables in ath_hal_getcapability
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 16:06:21 +0000 (18:06 +0200)]
remove ieee80211_hdrsize_padding
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 16:04:47 +0000 (18:04 +0200)]
remove ath_hal_vprintf
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 16:03:04 +0000 (18:03 +0200)]
remove ath_rate_mcs2rate
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 15:51:28 +0000 (17:51 +0200)]
remove ath_rate_detach
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 15:49:46 +0000 (17:49 +0200)]
remove median function
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 15:48:15 +0000 (17:48 +0200)]
remove rcIsValidTxMask
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 15:46:31 +0000 (17:46 +0200)]
remove unused adf_os_cpu_to_le16
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 15:44:50 +0000 (17:44 +0200)]
remove adf_os_virt_module_name
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 15:36:25 +0000 (17:36 +0200)]
remove ath_hal_memzero
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 15:00:51 +0000 (17:00 +0200)]
remove ath_hal_setupratetable
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 14:31:30 +0000 (16:31 +0200)]
remove ar5416SetMulticastFilterInde
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 14:29:08 +0000 (16:29 +0200)]
remove ar5416SetMulticastFilter
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 14:23:29 +0000 (16:23 +0200)]
remove ar5416ClrMulticastFilterIndex
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 11:05:16 +0000 (13:05 +0200)]
ar5416Attach: remove useless check
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 11:03:20 +0000 (13:03 +0200)]
use ah_set11nVirtualMoreFrag directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 11:00:50 +0000 (13:00 +0200)]
use ah_procTxDesc directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:58:12 +0000 (12:58 +0200)]
use ah_fillKeyTxDesc directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:56:12 +0000 (12:56 +0200)]
use ah_fillTxDesc directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:54:00 +0000 (12:54 +0200)]
remove ar5416IntrReqTxDesc_20
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:51:12 +0000 (12:51 +0200)]
use ah_setupTxDesc directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:47:58 +0000 (12:47 +0200)]
remove ah_updateCTSForBursting
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:46:19 +0000 (12:46 +0200)]
use ah_procRxDescFast directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:44:42 +0000 (12:44 +0200)]
use ah_setupRxDesc directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:43:07 +0000 (12:43 +0200)]
use ah_set11nBurstDuration directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:17:39 +0000 (12:17 +0200)]
use ah_clr11nAggr directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:13:49 +0000 (12:13 +0200)]
use ah_set11nAggrLast directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:12:06 +0000 (12:12 +0200)]
use ah_set11nAggrMiddle directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:06:34 +0000 (12:06 +0200)]
use ah_set11nAggrFirst directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:03:38 +0000 (12:03 +0200)]
use ah_set11nRateScenario directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 10:00:54 +0000 (12:00 +0200)]
use ah_set11nTxDesc directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Oleksij Rempel [Sat, 11 May 2013 09:13:57 +0000 (11:13 +0200)]
use ah_setInterrupts directly
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>