projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix irssi dependency on glib
[openwrt.git]
/
openwrt
/
target
/
linux
/
package
/
wlcompat
/
wlcompat.c
diff --git
a/openwrt/target/linux/package/wlcompat/wlcompat.c
b/openwrt/target/linux/package/wlcompat/wlcompat.c
index
1d2a363
..
037d9ce
100644
(file)
--- a/
openwrt/target/linux/package/wlcompat/wlcompat.c
+++ b/
openwrt/target/linux/package/wlcompat/wlcompat.c
@@
-176,7
+176,7
@@
static int wlcompat_ioctl_getiwrange(struct net_device *dev,
if (wl_ioctl(dev, WLC_GET_FRAG, &range->max_frag, sizeof(int)) < 0)
range->max_frag = 2346;
if (wl_ioctl(dev, WLC_GET_FRAG, &range->max_frag, sizeof(int)) < 0)
range->max_frag = 2346;
- range->txpower_capa = IW_TXPOW_
MWATT
;
+ range->txpower_capa = IW_TXPOW_
DBM
;
return 0;
}
return 0;
}
@@
-412,17
+412,17
@@
static int wlcompat_ioctl(struct net_device *dev,
{
int radio;
{
int radio;
- if (wl_ioctl(dev, WLC_GET_RADIO, &radio, sizeof(int)) < 0)
- return -EINVAL;
+ wl_ioctl(dev, WLC_GET_RADIO, &radio, sizeof(int));
if (wl_get_val(dev, "qtxpower", &(wrqu->txpower.value), sizeof(int)) < 0)
return -EINVAL;
wrqu->txpower.value &= ~WL_TXPWR_OVERRIDE;
if (wl_get_val(dev, "qtxpower", &(wrqu->txpower.value), sizeof(int)) < 0)
return -EINVAL;
wrqu->txpower.value &= ~WL_TXPWR_OVERRIDE;
+ wrqu->txpower.value /= 4;
wrqu->txpower.fixed = 0;
wrqu->txpower.disabled = radio;
wrqu->txpower.fixed = 0;
wrqu->txpower.disabled = radio;
- wrqu->txpower.flags = IW_TXPOW_
MWATT
;
+ wrqu->txpower.flags = IW_TXPOW_
DBM
;
break;
}
case SIOCSIWTXPOW:
break;
}
case SIOCSIWTXPOW:
@@
-430,19
+430,19
@@
static int wlcompat_ioctl(struct net_device *dev,
/* This is weird: WLC_SET_RADIO with 1 as argument disables the radio */
int radio = wrqu->txpower.disabled;
/* This is weird: WLC_SET_RADIO with 1 as argument disables the radio */
int radio = wrqu->txpower.disabled;
- if (wl_ioctl(dev, WLC_SET_RADIO, &radio, sizeof(int)) < 0)
- return -EINVAL;
+ wl_ioctl(dev, WLC_SET_RADIO, &radio, sizeof(int));
- if (!wrqu->txpower.disabled) {
+ if (!wrqu->txpower.disabled
&& (wrqu->txpower.value > 0)
) {
int value;
if (wl_get_val(dev, "qtxpower", &value, sizeof(int)) < 0)
return -EINVAL;
value &= WL_TXPWR_OVERRIDE;
int value;
if (wl_get_val(dev, "qtxpower", &value, sizeof(int)) < 0)
return -EINVAL;
value &= WL_TXPWR_OVERRIDE;
+ wrqu->txpower.value *= 4;
wrqu->txpower.value |= value;
wrqu->txpower.value |= value;
- if (wrqu->txpower.flags != IW_TXPOW_
MWATT
)
+ if (wrqu->txpower.flags != IW_TXPOW_
DBM
)
return -EINVAL;
if (wrqu->txpower.value > 0)
return -EINVAL;
if (wrqu->txpower.value > 0)
@@
-459,8
+459,15
@@
static int wlcompat_ioctl(struct net_device *dev,
if (index < 0)
index = get_primary_key(dev);
if (index < 0)
index = get_primary_key(dev);
- if (wrqu->data.flags & IW_ENCODE_DISABLED)
+ if (wrqu->data.flags & IW_ENCODE_DISABLED)
{
wep = 0;
wep = 0;
+ if (wl_ioctl(dev, WLC_SET_WSEC, &wep, sizeof(val)) < 0)
+ return -EINVAL;
+ return 0;
+ }
+
+ if (wl_ioctl(dev, WLC_SET_WSEC, &wep, sizeof(val)) < 0)
+ return -EINVAL;
if (wrqu->data.flags & IW_ENCODE_OPEN)
wrestrict = 0;
if (wrqu->data.flags & IW_ENCODE_OPEN)
wrestrict = 0;
@@
-479,18
+486,11
@@
static int wlcompat_ioctl(struct net_device *dev,
}
if (index >= 0)
}
if (index >= 0)
- if (wl_ioctl(dev, WLC_SET_KEY_PRIMARY, &index, sizeof(index)) < 0)
- return -EINVAL;
+ wl_ioctl(dev, WLC_SET_KEY_PRIMARY, &index, sizeof(index));
- if (wl_ioctl(dev, WLC_GET_WSEC, &val, sizeof(val)) < 0)
- return -EINVAL;
- val |= wep;
- if (wl_ioctl(dev, WLC_SET_WSEC, &val, sizeof(val)) < 0)
- return -EINVAL;
-
if (wrestrict >= 0)
if (wrestrict >= 0)
- if (wl_ioctl(dev, WLC_SET_WEP_RESTRICT, &wrestrict, sizeof(wrestrict)) < 0)
- return -EINVAL;
+ wl_ioctl(dev, WLC_SET_WEP_RESTRICT, &wrestrict, sizeof(wrestrict));
+
break;
}
case SIOCGIWENCODE:
break;
}
case SIOCGIWENCODE:
This page took
0.022159 seconds
and
4
git commands to generate.