X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/42bda49cb1b8eeefdeafd4dc6b37f8c80dad3942..d779c21114e94a3e8f8bcfb362f2480f3e4e65e6:/package/madwifi/patches/105-ratectl_attach.patch

diff --git a/package/madwifi/patches/105-ratectl_attach.patch b/package/madwifi/patches/105-ratectl_attach.patch
index 79b08dfb8..80aad835e 100644
--- a/package/madwifi/patches/105-ratectl_attach.patch
+++ b/package/madwifi/patches/105-ratectl_attach.patch
@@ -1,6 +1,6 @@
 --- a/net80211/ieee80211_rate.c
 +++ b/net80211/ieee80211_rate.c
-@@ -100,8 +100,18 @@
+@@ -100,8 +100,18 @@ struct ath_ratectrl *ieee80211_rate_atta
  		ieee80211_load_module(buf);
  
  	if (!ratectls[id].attach) {
@@ -8,7 +8,7 @@
 -		return NULL;
 +		/* pick the first available rate control module */
 +		printk(KERN_INFO "Rate control module \"%s\" not available\n", buf);
-+		for (id = 0; id < IEEE80211_RATE_MAX; id++) {
++		for (id = 0; id < IEEE80211_RATE_MAX - 1; id++) {
 +			if (ratectls[id].attach)
 +				break;
 +		}