diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-03-06 12:22:41 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-03-06 12:22:41 +0000 |
commit | 1e0ccaa871042b20f43d70f79e7aaa412b405c47 (patch) | |
tree | bee9850a64c928e2ed40d3e5766e349cae8f0eb0 /package/acx-mac80211/patches/005-pci_fixes.patch | |
parent | 7b851328e6bde6378d378f80b681bf658dcd7345 (diff) | |
download | upstream-1e0ccaa871042b20f43d70f79e7aaa412b405c47.tar.gz upstream-1e0ccaa871042b20f43d70f79e7aaa412b405c47.tar.bz2 upstream-1e0ccaa871042b20f43d70f79e7aaa412b405c47.zip |
[ar7] update acx-mac80211 to a newer snapshot and fix its compilation wrt new includes path
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20015 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx-mac80211/patches/005-pci_fixes.patch')
-rw-r--r-- | package/acx-mac80211/patches/005-pci_fixes.patch | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/package/acx-mac80211/patches/005-pci_fixes.patch b/package/acx-mac80211/patches/005-pci_fixes.patch deleted file mode 100644 index de407d81d0..0000000000 --- a/package/acx-mac80211/patches/005-pci_fixes.patch +++ /dev/null @@ -1,70 +0,0 @@ -Index: acx-mac80211-20080805/acx_func.h -=================================================================== ---- acx-mac80211-20080805.orig/acx_func.h 2009-05-26 20:58:10.000000000 +0200 -+++ acx-mac80211-20080805/acx_func.h 2009-05-26 20:58:11.000000000 +0200 -@@ -623,7 +623,7 @@ - struct ieee80211_vif *vif, - struct ieee80211_bss_conf *info, - u32 changes); --int acx_net_config(struct ieee80211_hw* ieee, struct ieee80211_conf *conf); -+int acx_net_config(struct ieee80211_hw* ieee, u32 changed); - int acx_net_get_tx_stats(struct ieee80211_hw* ieee, struct ieee80211_tx_queue_stats *stats); - int acx_net_conf_tx(struct ieee80211_hw* ieee, u16 queue, - const struct ieee80211_tx_queue_params *params); -Index: acx-mac80211-20080805/common.c -=================================================================== ---- acx-mac80211-20080805.orig/common.c 2009-05-26 20:58:10.000000000 +0200 -+++ acx-mac80211-20080805/common.c 2009-05-26 20:58:11.000000000 +0200 -@@ -4300,9 +4300,10 @@ - ** Derived from mac80211 code, p54, bcm43xx_mac80211 - ** - */ --int acx_net_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf) -+int acx_net_config(struct ieee80211_hw *hw, u32 changed) - { - acx_device_t *adev = ieee2adev(hw); -+ struct ieee80211_conf *conf = &hw->conf; - unsigned long flags; - - FN_ENTER; -Index: acx-mac80211-20080805/pci.c -=================================================================== ---- acx-mac80211-20080805.orig/pci.c 2009-05-26 20:58:10.000000000 +0200 -+++ acx-mac80211-20080805/pci.c 2009-05-30 20:44:29.000000000 +0200 -@@ -3105,7 +3105,7 @@ - - /* let chip do RTS/CTS handshaking before sending - * in case packet size exceeds threshold */ -- if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) -+ if (info->flags & IEEE80211_TX_RC_USE_RTS_CTS) - SET_BIT(Ctl2_8, DESC_CTL2_RTS); - else - CLEAR_BIT(Ctl2_8, DESC_CTL2_RTS); -@@ -3120,7 +3120,7 @@ - /* put_txcr(adev, txdesc, clt, rate_cur); deprecated by mac80211 */ - - txdesc->total_length = cpu_to_le16(len); -- wlhdr_len = ieee80211_get_hdrlen(le16_to_cpu(wireless_header->frame_control)); -+ wlhdr_len = ieee80211_hdrlen(le16_to_cpu(wireless_header->frame_control)); - hostdesc2->length = cpu_to_le16(len - wlhdr_len); - /* - if (!ieeectl->do_not_encrypt && ieeectl->key_idx>= 0) -@@ -3444,8 +3444,8 @@ - /* And finally report upstream */ - if (hostdesc) - { -- info->status.excessive_retries = rts_failures; -- info->status.retry_count = ack_failures; -+ //info->status.excessive_retries = rts_failures; -+ //info->status.retry_count = ack_failures; - ieee80211_tx_status(adev->ieee, hostdesc->skb); - } - /* update pointer for descr to be cleaned next */ -@@ -4303,6 +4303,7 @@ - } - - acx_init_task_scheduler(adev); -+ adev->ieee->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION); - result = ieee80211_register_hw(adev->ieee); - if (OK != result) { - printk("acx: ieee80211_register_hw() FAILED: %d\n", result); |