fix some small bugs in wificonf and wlcompat

SVN-Revision: 1385
master
Felix Fietkau 19 years ago
parent 5b4b708184
commit 4f5eb26f28
  1. 7
      openwrt/package/wificonf/wificonf.c
  2. 8
      openwrt/target/linux/package/wlcompat/wlcompat.c

@ -36,21 +36,18 @@
do { \
ERR_SET_EXT(rname, request); \
fprintf(stderr, " too few arguments.\n"); \
return; \
} while(0)
#define ABORT_ARG_TYPE(rname, request, arg) \
do { \
ERR_SET_EXT(rname, request); \
fprintf(stderr, " invalid argument \"%s\".\n", arg); \
return; \
} while(0)
#define ABORT_ARG_SIZE(rname, request, max) \
do { \
ERR_SET_EXT(rname, request); \
fprintf(stderr, " argument too big (max %d)\n", max); \
return; \
} while(0)
/*------------------------------------------------------------------*/
@ -64,7 +61,6 @@
ERR_SET_EXT(rname, request); \
fprintf(stderr, " SET failed on device %-1.16s ; %s.\n", \
ifname, strerror(errno)); \
return; \
} } while(0)
/*------------------------------------------------------------------*/
@ -78,7 +74,6 @@
ERR_SET_EXT(rname, request); \
fprintf(stderr, " GET failed on device %-1.16s ; %s.\n", \
ifname, strerror(errno)); \
return; \
} } while(0)
char *prefix;
@ -115,8 +110,6 @@ int bcom_ioctl(int skfd, char *ifname, int cmd, void *buf, int len)
strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
ret = ioctl(skfd, SIOCDEVPRIVATE, &ifr);
if (ret < 0)
fprintf(stderr, "bcom_ioctl [cmd=%d, buf=%08x, len=%d] failed: %d\n", cmd, buf, len, ret);
return ret;
}

@ -412,8 +412,7 @@ static int wlcompat_ioctl(struct net_device *dev,
{
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;
@ -431,10 +430,9 @@ 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;
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)

Loading…
Cancel
Save