summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-08 00:34:30 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-08 00:34:30 +0000
commit8406af5f1b9af59c42a2f62fb57c92741e03547c (patch)
treef3ac610139f96f70c207f2f7cdaa02e0d802d104 /package
parent5f1dd4f0adaa73856f97302de5bd4361fd1dd78a (diff)
mac80211: remove an obsolete patch which breaks 2.6.32 compat
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20046 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/mac80211/patches/120-linux-2.6.30-compat.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/package/mac80211/patches/120-linux-2.6.30-compat.patch b/package/mac80211/patches/120-linux-2.6.30-compat.patch
deleted file mode 100644
index 179c1eb64..000000000
--- a/package/mac80211/patches/120-linux-2.6.30-compat.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/net/wireless/nl80211.c
-+++ b/net/wireless/nl80211.c
-@@ -5789,7 +5789,11 @@ int nl80211_send_action(struct cfg80211_
- return err;
- }
-
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,32))
- err = genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlpid);
-+#else
-+ err = genlmsg_unicast(msg, nlpid);
-+#endif
- if (err < 0)
- return err;
- return 0;