]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/usb/eth/usb_ether.c
Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter
[karo-tx-uboot.git] / drivers / usb / eth / usb_ether.c
index 9e3d0066862c8ea0af35b8409dc9b6170d91ce56..7b55da30e06736d521785ed7943c5872cae5f411 100644 (file)
@@ -44,6 +44,13 @@ static const struct usb_eth_prob_dev prob_dev[] = {
                .probe = asix_eth_probe,
                .get_info = asix_eth_get_info,
        },
+#endif
+#ifdef CONFIG_USB_ETHER_SMSC95XX
+       {
+               .before_probe = smsc95xx_eth_before_probe,
+               .probe = smsc95xx_eth_probe,
+               .get_info = smsc95xx_eth_get_info,
+       },
 #endif
        { },            /* END */
 };
@@ -147,4 +154,3 @@ int usb_host_eth_scan(int mode)
                return 0;
        return -1;
 }
-