huge madwifi update (work in progress, disabled by default, compiles but breaks at...
[openwrt/svn-archive/archive.git] / package / madwifi / patches-r3776 / 105-ratectl_attach.patch
1 Index: madwifi-trunk-r3776/net80211/ieee80211_rate.c
2 ===================================================================
3 --- madwifi-trunk-r3776.orig/net80211/ieee80211_rate.c 2008-07-17 00:35:59.000000000 +0200
4 +++ madwifi-trunk-r3776/net80211/ieee80211_rate.c 2008-07-17 00:47:27.000000000 +0200
5 @@ -100,8 +100,18 @@
6 ieee80211_load_module(buf);
7
8 if (!ratectls[id].attach) {
9 - printk(KERN_ERR "Error loading module \"%s\"\n", buf);
10 - return NULL;
11 + /* pick the first available rate control module */
12 + printk(KERN_INFO "Rate control module \"%s\" not available\n", buf);
13 + for (id = 0; id < IEEE80211_RATE_MAX; id++) {
14 + if (ratectls[id].attach)
15 + break;
16 + }
17 + if (!ratectls[id].attach) {
18 + printk(KERN_ERR "No rate control module available");
19 + return NULL;
20 + } else {
21 + printk(KERN_INFO "Using \"%s\" instead.\n", module_names[id]);
22 + }
23 }
24
25 ctl = ratectls[id].attach(sc);