diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2009-09-26 22:05:46 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2009-09-26 22:05:46 +0000 |
commit | e37eae828c25503d2b87bdfde75e1a8ca9372cff (patch) | |
tree | 2edda81ab0e6f90f0f769bb41a3da19893df7e64 | |
parent | 737b4b4bcb7cf5663ba2552820a74bfed3fe717f (diff) | |
download | upstream-e37eae828c25503d2b87bdfde75e1a8ca9372cff.tar.gz upstream-e37eae828c25503d2b87bdfde75e1a8ca9372cff.tar.bz2 upstream-e37eae828c25503d2b87bdfde75e1a8ca9372cff.zip |
Do not depend on rfkill
With kernel 2.6.31 cfg80211 is build with rfkill if it was build.
SVN-Revision: 17754
-rw-r--r-- | package/mac80211/patches/012-remove_rfkill.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/package/mac80211/patches/012-remove_rfkill.patch b/package/mac80211/patches/012-remove_rfkill.patch new file mode 100644 index 0000000000..a47168a05c --- /dev/null +++ b/package/mac80211/patches/012-remove_rfkill.patch @@ -0,0 +1,33 @@ +--- a/drivers/net/wireless/ath/ath5k/base.h ++++ b/drivers/net/wireless/ath/ath5k/base.h +@@ -46,7 +46,7 @@ + #include <linux/wireless.h> + #include <linux/if_ether.h> + #include <linux/leds.h> +-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31)) ++#if 0 + #include <linux/rfkill.h> + #else + #include <linux/rfkill_backport.h> +--- a/net/wireless/core.h ++++ b/net/wireless/core.h +@@ -11,7 +11,7 @@ + #include <linux/kref.h> + #include <linux/rbtree.h> + #include <linux/debugfs.h> +-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31)) ++#if 0 + #include <linux/rfkill.h> + #else + #include <linux/rfkill_backport.h> +--- a/include/linux/rfkill_backport.h ++++ b/include/linux/rfkill_backport.h +@@ -149,7 +149,7 @@ struct rfkill_ops { + int (*set_block)(void *data, bool blocked); + }; + +-#if defined(CONFIG_RFKILL_BACKPORT) || defined(CONFIG_RFKILL_MODULE_BACKPORT) ++#if 0 + /** + * rfkill_alloc - allocate rfkill structure + * @name: name of the struct -- the string is not copied internally |