summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/411-mac80211-remove-wiphy-to-hw.patch
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-10-11 01:33:09 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-10-11 01:33:09 +0000
commit090f16f6fb1019af891be04e2da176f6feb65cc9 (patch)
tree1fafd2be3f6989795ec69425f3dabbade11138b2 /package/mac80211/patches/411-mac80211-remove-wiphy-to-hw.patch
parent042b8de61d833ef841b2ccf4d39f673aecaacd3a (diff)
mac80211: add rate control rewrite and enhance the performance of the minstrel algorithm for non-mrr configurations
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12948 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/411-mac80211-remove-wiphy-to-hw.patch')
-rw-r--r--package/mac80211/patches/411-mac80211-remove-wiphy-to-hw.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/package/mac80211/patches/411-mac80211-remove-wiphy-to-hw.patch b/package/mac80211/patches/411-mac80211-remove-wiphy-to-hw.patch
new file mode 100644
index 000000000..c8a1a225b
--- /dev/null
+++ b/package/mac80211/patches/411-mac80211-remove-wiphy-to-hw.patch
@@ -0,0 +1,38 @@
+Subject: mac80211: remove wiphy_to_hw
+
+This isn't used by anyone, if we ever need it we can add
+it back, until then it's useless.
+
+Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
+---
+ include/net/mac80211.h | 2 --
+ net/mac80211/cfg.c | 7 -------
+ 2 files changed, 9 deletions(-)
+
+--- everything.orig/include/net/mac80211.h 2008-10-07 20:05:49.000000000 +0200
++++ everything/include/net/mac80211.h 2008-10-07 20:06:42.000000000 +0200
+@@ -867,8 +867,6 @@ struct ieee80211_hw {
+ u8 max_altrate_tries;
+ };
+
+-struct ieee80211_hw *wiphy_to_hw(struct wiphy *wiphy);
+-
+ /**
+ * SET_IEEE80211_DEV - set device for 802.11 hardware
+ *
+--- everything.orig/net/mac80211/cfg.c 2008-10-07 20:06:37.000000000 +0200
++++ everything/net/mac80211/cfg.c 2008-10-07 20:06:42.000000000 +0200
+@@ -17,13 +17,6 @@
+ #include "rate.h"
+ #include "mesh.h"
+
+-struct ieee80211_hw *wiphy_to_hw(struct wiphy *wiphy)
+-{
+- struct ieee80211_local *local = wiphy_priv(wiphy);
+- return &local->hw;
+-}
+-EXPORT_SYMBOL(wiphy_to_hw);
+-
+ static bool nl80211_type_check(enum nl80211_iftype type)
+ {
+ switch (type) {