projects
/
openwrt
/
staging
/
adrian.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68006b3
)
set rate in wificonf from wl0_rate (fixes #159)
author
Felix Fietkau
<nbd@openwrt.org>
Tue, 10 Jan 2006 21:11:47 +0000
(21:11 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Tue, 10 Jan 2006 21:11:47 +0000
(21:11 +0000)
SVN-Revision: 2883
openwrt/package/wificonf/wificonf.c
patch
|
blob
|
history
diff --git
a/openwrt/package/wificonf/wificonf.c
b/openwrt/package/wificonf/wificonf.c
index 1ac0ca880e21b7904b7bdf17522ac867d4ab9750..5c3581df638da5c6b64aca765ca19c8a3832d65a 100644
(file)
--- a/
openwrt/package/wificonf/wificonf.c
+++ b/
openwrt/package/wificonf/wificonf.c
@@
-622,6
+622,10
@@
static void setup_bcom_common(int skfd, char *ifname)
val = nvram_enabled(wl_var("lazywds"));
bcom_ioctl(skfd, ifname, WLC_SET_LAZYWDS, &val, sizeof(val));
+ if ((val = atoi(nvram_safe_get(wl_var("rate")))) > 0) {
+ val *= 2;
+ bcom_ioctl(skfd, ifname, WLC_SET_RATE, &val, sizeof(val));
+ }
if (v = nvram_get(wl_var("dtim"))) {
val = atoi(v);
bcom_ioctl(skfd, ifname, WLC_SET_DTIMPRD, &val, sizeof(val));