diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2011-06-15 21:18:21 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2011-06-15 21:18:21 +0000 |
commit | 0db9c2bd7d3620ba18fa784bda702d971783b4f6 (patch) | |
tree | c8eadb8e12061061d560a330e9490e1d6f003c67 /package/acx-mac80211 | |
parent | b213493bda02f29c59c04b611a4ba729ce01b08d (diff) | |
download | master-31e0f0ae-0db9c2bd7d3620ba18fa784bda702d971783b4f6.tar.gz master-31e0f0ae-0db9c2bd7d3620ba18fa784bda702d971783b4f6.tar.bz2 master-31e0f0ae-0db9c2bd7d3620ba18fa784bda702d971783b4f6.zip |
acx-mac80211: Compile fix for newer kernels
common.c is missing an include for linux/ratelimit.h.
Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com>
SVN-Revision: 27190
Diffstat (limited to 'package/acx-mac80211')
-rw-r--r-- | package/acx-mac80211/patches/004-ratelimit_compile_fix.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/acx-mac80211/patches/004-ratelimit_compile_fix.patch b/package/acx-mac80211/patches/004-ratelimit_compile_fix.patch new file mode 100644 index 0000000000..34ba08d9b9 --- /dev/null +++ b/package/acx-mac80211/patches/004-ratelimit_compile_fix.patch @@ -0,0 +1,10 @@ +--- a/common.c ++++ b/common.c +@@ -31,6 +31,7 @@ + #include <linux/ethtool.h> + #include <linux/nl80211.h> + #include <linux/ieee80211.h> ++#include <linux/ratelimit.h> + + #include <net/mac80211.h> + |