diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/arndale.h | 5 | ||||
-rw-r--r-- | include/usb_ether.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/configs/arndale.h b/include/configs/arndale.h index 6bd27a2446..d68993bb1f 100644 --- a/include/configs/arndale.h +++ b/include/configs/arndale.h @@ -24,6 +24,11 @@ #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_EXYNOS +#define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3 +#define CONFIG_USB_HOST_ETHER +#define CONFIG_USB_ETHER_ASIX +#define CONFIG_USB_ETHER_ASIX88179 + /* MMC SPL */ #define CONFIG_EXYNOS_SPL diff --git a/include/usb_ether.h b/include/usb_ether.h index 35700a21b5..b38d037fbe 100644 --- a/include/usb_ether.h +++ b/include/usb_ether.h @@ -49,6 +49,12 @@ int asix_eth_probe(struct usb_device *dev, unsigned int ifnum, int asix_eth_get_info(struct usb_device *dev, struct ueth_data *ss, struct eth_device *eth); +void ax88179_eth_before_probe(void); +int ax88179_eth_probe(struct usb_device *dev, unsigned int ifnum, + struct ueth_data *ss); +int ax88179_eth_get_info(struct usb_device *dev, struct ueth_data *ss, + struct eth_device *eth); + void mcs7830_eth_before_probe(void); int mcs7830_eth_probe(struct usb_device *dev, unsigned int ifnum, struct ueth_data *ss); |