X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/0e55432c8e8124460c21be7424e7423289b8ccf4..8bb07ec4ed27e91fef68badb99096256c6b9ac35:/openwrt/package/wificonf/wificonf.c diff --git a/openwrt/package/wificonf/wificonf.c b/openwrt/package/wificonf/wificonf.c index 1ac0ca880..068090cc9 100644 --- a/openwrt/package/wificonf/wificonf.c +++ b/openwrt/package/wificonf/wificonf.c @@ -780,6 +780,11 @@ static void setup_bcom_new(int skfd, char *ifname) } + if ((val = atoi(nvram_safe_get(wl_var("rate")))) > 0) { + val /= 500000; + bcom_set_int(skfd, ifname, "bg_rate", val); + bcom_set_int(skfd, ifname, "a_rate", val); + } if (v = nvram_get(wl_var("rts"))) { val = atoi(v); bcom_set_int(skfd, ifname, "rtsthresh", val); @@ -823,6 +828,10 @@ static void setup_bcom_old(int skfd, char *ifname) setup_bcom_common(skfd, ifname); + if ((val = atoi(nvram_safe_get(wl_var("rate")))) > 0) { + val *= 2; + bcom_ioctl(skfd, ifname, 13, &val, sizeof(val)); + } if (v = nvram_get(wl_var("frag"))) { val = atoi(v); bcom_ioctl(skfd, ifname, WLC_SET_FRAG, &val, sizeof(val));