build system fixes, more cleanup
[openwrt-10.03/.git] / package / switch / src / switch-robo.c
index 32cf2b3960306fda8f7108917e0770f4e7757f52..009781dc007d88411424d5a2ecda95714ba4b408 100644 (file)
@@ -20,7 +20,7 @@
  * 02110-1301, USA.
  */
 
-#include <linux/config.h>
+#include <linux/autoconf.h>
 #include <linux/module.h>
 #include <linux/init.h>
 #include <linux/if.h>
@@ -221,10 +221,6 @@ static int robo_vlan5350(void)
 
 static int robo_probe(char *devname)
 {
-       struct ethtool_drvinfo info;
-/*
-       int i;
-*/
        __u32 phyid;
 
        printk("Probing device %s: ", devname);
@@ -235,12 +231,6 @@ static int robo_probe(char *devname)
                return 1;
        }
 
-       info.cmd = ETHTOOL_GDRVINFO;
-       if (do_ioctl(SIOCETHTOOL, (void *) &info) < 0) {
-               printk("SIOCETHTOOL: not supported\n");
-               return 1;
-       }
-       
        /* try access using MII ioctls - get phy address */
        if (do_ioctl(SIOCGMIIPHY, NULL) < 0) {
                use_et = 1;