diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-17 22:37:04 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-17 22:37:04 +0000 |
commit | 0cfd25119d1554d24e99b29a2d21b026a0e14c0e (patch) | |
tree | 1f393b911100d8f4467f9566aab0be4e120aa8b6 /package/mac80211/patches | |
parent | 1797c1217b1043c7ac59e86dab7e6bf825c0c9b3 (diff) | |
download | upstream-0cfd25119d1554d24e99b29a2d21b026a0e14c0e.tar.gz upstream-0cfd25119d1554d24e99b29a2d21b026a0e14c0e.tar.bz2 upstream-0cfd25119d1554d24e99b29a2d21b026a0e14c0e.zip |
mac80211: add compile fix for pre-2.6.32 kernels
SVN-Revision: 19692
Diffstat (limited to 'package/mac80211/patches')
-rw-r--r-- | package/mac80211/patches/900-linux-2.6.30-compat.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/mac80211/patches/900-linux-2.6.30-compat.patch b/package/mac80211/patches/900-linux-2.6.30-compat.patch new file mode 100644 index 0000000000..de46545116 --- /dev/null +++ b/package/mac80211/patches/900-linux-2.6.30-compat.patch @@ -0,0 +1,14 @@ +--- a/net/wireless/nl80211.c ++++ b/net/wireless/nl80211.c +@@ -5667,7 +5667,11 @@ + 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; |