aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/wpa-supplicant
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-09-29 22:43:37 +0200
committerFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-09-29 22:43:37 +0200
commit9a5382aad4e5a3e52fa52722cf5587fdba958e9f (patch)
treee1227851a44d7089ff87845b53296c412b53de4e /recipes/wpa-supplicant
parent17c21c62b474f83f83676adf8099f58035908bdf (diff)
downloadopenembedded-9a5382aad4e5a3e52fa52722cf5587fdba958e9f.tar.gz
wpa-supplicant : moved unused files to obsolete dir
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/wpa-supplicant')
-rw-r--r--recipes/wpa-supplicant/files/use-channel.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/recipes/wpa-supplicant/files/use-channel.patch b/recipes/wpa-supplicant/files/use-channel.patch
deleted file mode 100644
index 337c0422cd..0000000000
--- a/recipes/wpa-supplicant/files/use-channel.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- wpa_supplicant/driver_wext.c~use-channel
-+++ wpa_supplicant/driver_wext.c
-@@ -655,6 +655,12 @@
- }
-
-
-+static const long frequency_list[] =
-+{
-+ 2412, 2417, 2422, 2427, 2432, 2437, 2442,
-+ 2447, 2452, 2457, 2462, 2467, 2472, 2484
-+};
-+
- int wpa_driver_wext_get_scan_results(void *priv,
- struct wpa_scan_result *results,
- size_t max_size)
-@@ -739,6 +745,11 @@
- case SIOCGIWFREQ:
- if (ap_num < max_size) {
- int div = 1000000, i;
-+ /* driver sent a channel, not a frequency */
-+ if (iwe->u.freq.e == 0 && iwe->u.freq.m >= 1 && iwe->u.freq.m <= sizeof(frequency_list)) {
-+ results[ap_num].freq = frequency_list[iwe->u.freq.m-1];
-+ break;
-+ } else
- if (iwe->u.freq.e > 6) {
- wpa_printf(
- MSG_DEBUG, "Invalid freq "