]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/usb_ether.h
image: Add support for signing of FIT configurations
[karo-tx-uboot.git] / include / usb_ether.h
index 825c27518f9931f63c1ce0cdee1c6b156093247b..7c7aecb30574d4536915f20f262a858470160421 100644 (file)
@@ -50,7 +50,8 @@ struct ueth_data {
        unsigned char   protocol;               /* .............. */
        unsigned char   irqinterval;    /* Intervall for IRQ Pipe */
 
-       /* private fields for each driver can go here if needed */
+       /* driver private */
+       void *dev_priv;
 };
 
 /*
@@ -65,4 +66,12 @@ int asix_eth_get_info(struct usb_device *dev, struct ueth_data *ss,
                      struct eth_device *eth);
 #endif
 
+#ifdef CONFIG_USB_ETHER_SMSC95XX
+void smsc95xx_eth_before_probe(void);
+int smsc95xx_eth_probe(struct usb_device *dev, unsigned int ifnum,
+                       struct ueth_data *ss);
+int smsc95xx_eth_get_info(struct usb_device *dev, struct ueth_data *ss,
+                       struct eth_device *eth);
+#endif
+
 #endif /* __USB_ETHER_H__ */