convert dhcp-forwarder to new packaging style
[openwrt.git] / package / openwrt / wlcompat.c
index fdcb36c..3c163fd 100644 (file)
@@ -569,12 +569,12 @@ static const struct iw_priv_args  wlcompat_private_args[] =
        {       PRIV_SET_TXPWR_LIMIT, 
                IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
                0,
-               "set_txpwr_limit"
+               "set_txpwr_force"
        },
        {       PRIV_GET_TXPWR_LIMIT, 
                0,
                IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1,
-               "get_txpwr_limit"
+               "get_txpwr_force"
        }
 };
 
@@ -695,7 +695,21 @@ static int new_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) {
 
 static int __init wlcompat_init()
 {
-       dev = dev_get_by_name("eth1");
+       int found = 0, i;
+       char *devname = "eth0";
+       
+       while (!found && (dev = dev_get_by_name(devname))) {
+               if ((wl_ioctl(dev, WLC_GET_MAGIC, &i, sizeof(i)) == 0) && i == WLC_IOCTL_MAGIC)
+                       found = 1;
+               devname[3]++;
+       }
+       
+       if (!found) {
+               printk("No Broadcom devices found.\n");
+               return -ENODEV;
+       }
+               
+
 #ifdef DEBUG
        old_ioctl = dev->do_ioctl;
        dev->do_ioctl = new_ioctl;
This page took 0.025337 seconds and 4 git commands to generate.