diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-03-08 00:34:30 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-03-08 00:34:30 +0000 |
commit | 3f6ca40dd133f4421f5bdac4fc0c44058b27ba9d (patch) | |
tree | 976ff1648a4c0558f765db7f52c74a76636e182f /package | |
parent | 708a33027fef211f1eb9fd6459341c6e721fd2a2 (diff) | |
download | upstream-3f6ca40dd133f4421f5bdac4fc0c44058b27ba9d.tar.gz upstream-3f6ca40dd133f4421f5bdac4fc0c44058b27ba9d.tar.bz2 upstream-3f6ca40dd133f4421f5bdac4fc0c44058b27ba9d.zip |
mac80211: remove an obsolete patch which breaks 2.6.32 compat
SVN-Revision: 20046
Diffstat (limited to 'package')
-rw-r--r-- | package/mac80211/patches/120-linux-2.6.30-compat.patch | 14 |
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 179c1eb649..0000000000 --- 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; |