open-ath9k-htc-firmware.git
9 years agoremove all HAL_*_READ/WRITE defines 57/head
Oleksij Rempel [Fri, 23 May 2014 16:36:16 +0000 (18:36 +0200)]
remove all HAL_*_READ/WRITE defines

we do not need them any more

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
9 years agodbg_api.c: use new io funcs
Oleksij Rempel [Mon, 28 Apr 2014 18:08:59 +0000 (20:08 +0200)]
dbg_api.c: use new io funcs

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
9 years agocmnos_sflash.c: use new io funcs
Oleksij Rempel [Sun, 27 Apr 2014 14:47:47 +0000 (16:47 +0200)]
cmnos_sflash.c: use new io funcs

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
9 years agoapp_start.c: use new io funcs
Oleksij Rempel [Sun, 27 Apr 2014 14:09:00 +0000 (16:09 +0200)]
app_start.c: use new io funcs

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
9 years agousb_api_main_patch.c use new io funcs
Oleksij Rempel [Sun, 27 Apr 2014 13:29:58 +0000 (15:29 +0200)]
usb_api_main_patch.c use new io funcs

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
9 years agousb_api_k2_patch.c: use new io functions
Oleksij Rempel [Sun, 27 Apr 2014 13:27:26 +0000 (15:27 +0200)]
usb_api_k2_patch.c: use new io functions

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
9 years agousb_api_magpie_patch.c: use new io funcs
Oleksij Rempel [Sun, 27 Apr 2014 09:25:41 +0000 (11:25 +0200)]
usb_api_magpie_patch.c: use new io funcs

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
9 years agoinit.c: use new io funcs
Oleksij Rempel [Sun, 27 Apr 2014 14:02:11 +0000 (16:02 +0200)]
init.c: use new io funcs

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
9 years agoadf_os_io.h: add some ios
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>
9 years agoremove ath_hal_reg_write_target and OS_REG_WRITE
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>
9 years agoremove some unused io defines
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>
9 years agoremove ath_hal_reg_read_target and OS_REG_READ
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>
9 years agoinit.c: mark wlan_task as noreturn
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>
9 years agomake sure app_start is always at the entry point
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>
9 years agoMerge pull request #55 from biergaizi/master
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()

9 years agoMerge pull request #52 from olerem/move_build_2
Adrian Chadd [Fri, 23 May 2014 15:59:23 +0000 (08:59 -0700)]
Merge pull request #52 from olerem/move_build_2

Move build

9 years agoFix Array Out of Bounds in rcSibUpdate_ht() 55/head
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>
9 years agoremove some identical usb related headers 52/head
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>
9 years agomove sboot to the root directory
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>
9 years agoCMakeLists.txt: do not use include from build
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>
9 years agomake a local copy of includes needed by magpie
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>
10 years agoMerge pull request #51 from chunyeow/master
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

10 years agoMerge pull request #50 from olerem/testing
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

10 years agoath9k_htc_firmware: fix the offset of CCMP header for mesh data frame 51/head
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>
10 years agoMerge branch 'master' of https://github.com/sdfsdfsdfdsdf/open-ath9k-htc-firmware... 50/head
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

10 years agoMerge branch 'installCmake' of https://github.com/mattflaschen/open-ath9k-htc-firmwar...
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

10 years agoMerge branch 'hif' into next
Oleksij Rempel [Sun, 23 Mar 2014 06:34:40 +0000 (07:34 +0100)]
Merge branch 'hif' into next

10 years agoMerge branch 'speed' into next
Oleksij Rempel [Sun, 23 Mar 2014 06:30:53 +0000 (07:30 +0100)]
Merge branch 'speed' into next

10 years agoDownload through HTTPS for authenticity and privacy (fixes #48) 49/head
sdfsdfsdfdsdf [Sat, 15 Mar 2014 20:32:07 +0000 (20:32 +0000)]
Download through HTTPS for authenticity and privacy (fixes #48)

10 years agoinit.c: do cold reboot on exception 39/head
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>
10 years agoNote in README that cmake must be installed 41/head
Matthew Flaschen [Mon, 21 Oct 2013 04:58:20 +0000 (00:58 -0400)]
Note in README that cmake must be installed

10 years agosplit ath_hal_reg_read_tgt and reuse it in ath_hal_reg_rmw_tgt
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>
10 years agosplit ath_hal_reg_write_tgt and reuse it in ath_hal_reg_rmw_tgt
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>
10 years agowmi: add new command WMI_REG_RMW_CMDID
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>
10 years agouse only one usb_defs.h
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>
10 years agoadd new ZM_SOC_USB_DMA_RESET_OFFSET register
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>
10 years agousb_api_k2_patch.c: use same style like usb_api_magpie_patch.c
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>
10 years agohif/usb_api: unify platform specific patch file names
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>
10 years agohif/usb_api: remove dup code - _fw_usbfifo_recv_command
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>
10 years agohif/usb_api: remove dup code - bGet_descriptor_patch
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>
10 years agohif/usb_api: remove dup code - ep6 fix
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>
10 years agohif/usb_api: remove dup code - usb_reg_in_patch
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>
10 years agohif/usb_api: remove dup code - usb_reg_out_patch
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>
10 years agoMerge pull request #38 from olerem/next
Adrian Chadd [Fri, 23 Aug 2013 07:48:04 +0000 (00:48 -0700)]
Merge pull request #38 from olerem/next

Fixes for reboot issues

10 years agoremove transfer type patches for EP3 and EP4 38/head
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>
10 years agopatch bcdDevice value for magpie to make easy firmware detection.
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>
10 years agofix u8 to u16 conversation
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>
10 years agopatch bcdDevice value for k2 to make easy firmware detection.
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>
10 years agohelp linker to find u8UsbDeviceDescriptor on k2
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>
10 years agok2_fw_usb_api: workaround for EP4 bug.
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>
10 years agodocs: add chip images for documentation
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>
10 years agok2_fw_usb_api: prevent buffer overflow.
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>
10 years agok2_fw_usb_api: add warning on oversized buffer.
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>
10 years agoif_ath.c: make ath_hal_reg_write_tgt more readable
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>
10 years agok2_fw_usb_api: fix typo in usb reg address
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>
10 years agok2_fw_usb_api: fix typo in reg address
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>
10 years agok2_fw_usb_api: add delay after mac reset
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>
10 years agoMerge pull request #37 from olerem/clean_2
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.

10 years agoMerge branch 'clean' into clean_2 37/head
Oleksij Rempel [Sun, 23 Jun 2013 20:14:36 +0000 (22:14 +0200)]
Merge branch 'clean' into clean_2

10 years agoremove unused HAL_OPMODE
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>
10 years agoMerge pull request #34 from olerem/rc
Adrian Chadd [Thu, 30 May 2013 18:05:21 +0000 (11:05 -0700)]
Merge pull request #34 from olerem/rc

SImplefy STBC handler v4

10 years agoUpdate documentation to reflect the current reality.
Adrian Chadd [Thu, 16 May 2013 18:01:00 +0000 (11:01 -0700)]
Update documentation to reflect the current reality.

Issue: #28

10 years agoremove unused variables ah_set11nVirtualMoreFrag
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>
10 years agoremove unused variable in ah_set11nBurstDuration
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>
10 years agoremove unused variable in ah_clr11nAggr
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>
10 years agoremove unused variables ah_set11nAggrLast
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>
10 years agoremove unused variable ah_set11nAggrMiddle
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>
10 years agoremove unused variables in ah_set11nAggrFirst
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>
10 years agouse one ar5416Set11nAggrFirst_20 for merlin and k2
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>
10 years agoremove unused variables in ah_set11nRateScenario
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>
10 years agoremove unused variables in ah_set11nTxDesc
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>
10 years agoremove unused variables on ah_fillKeyTxDesc
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>
10 years agoremove unused variable in ah_fillTxDesc
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>
10 years agoremove unused variable in ah_setupTxDesc
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>
10 years agoremove unused variable in ah_setupRxDesc
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>
10 years agoremove unused variables in ar5416Attach
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>
10 years agoremove unused variables in ath_hal_getcapability
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>
10 years agoremove ieee80211_hdrsize_padding
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>
10 years agoremove ath_hal_vprintf
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>
10 years agoremove ath_rate_mcs2rate
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>
10 years agoremove ath_rate_detach
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>
10 years agoremove median function
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>
10 years agoremove rcIsValidTxMask
Oleksij Rempel [Sat, 11 May 2013 15:48:15 +0000 (17:48 +0200)]
remove rcIsValidTxMask

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
10 years agoremove unused adf_os_cpu_to_le16
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>
10 years agoremove adf_os_virt_module_name
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>
10 years agoremove ath_hal_memzero
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>
10 years agoremove ath_hal_setupratetable
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>
10 years agoremove ar5416SetMulticastFilterInde
Oleksij Rempel [Sat, 11 May 2013 14:31:30 +0000 (16:31 +0200)]
remove ar5416SetMulticastFilterInde

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
10 years agoremove ar5416SetMulticastFilter
Oleksij Rempel [Sat, 11 May 2013 14:29:08 +0000 (16:29 +0200)]
remove ar5416SetMulticastFilter

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
10 years agoremove ar5416ClrMulticastFilterIndex
Oleksij Rempel [Sat, 11 May 2013 14:23:29 +0000 (16:23 +0200)]
remove ar5416ClrMulticastFilterIndex

Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
10 years agoar5416Attach: remove useless check
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>
10 years agouse ah_set11nVirtualMoreFrag directly
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>
10 years agouse ah_procTxDesc directly
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>
10 years agouse ah_fillKeyTxDesc directly
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>
10 years agouse ah_fillTxDesc directly
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>
10 years agoremove ar5416IntrReqTxDesc_20
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>
10 years agouse ah_setupTxDesc directly
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>
10 years agoremove ah_updateCTSForBursting
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>
10 years agouse ah_procRxDescFast directly
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>
10 years agouse ah_setupRxDesc directly
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>