diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-01-11 19:34:48 (GMT) |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-01-18 11:31:36 (GMT) |
commit | 28a15ef7fd7d97f0634440866c6b7baa7708b5eb (patch) | |
tree | 8898a5429a30494516d6d6987a45fdca5762415d /include | |
parent | 0f8bc532404d09ed173d196a89a727f38f1749a6 (diff) | |
download | u-boot-fsl-qoriq-28a15ef7fd7d97f0634440866c6b7baa7708b5eb.tar.xz |
musb-new: Add sunxi musb controller support
This is based on Jussi Kivilinna's work for the linux-sunxi-3.4 kernel to use
the kernels musb driver instead of Allwinners own custom driver.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/usb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/usb.h b/include/usb.h index 3d33b2d..b921a7f 100644 --- a/include/usb.h +++ b/include/usb.h @@ -154,8 +154,8 @@ enum usb_init_type { defined(CONFIG_USB_OMAP3) || defined(CONFIG_USB_DA8XX) || \ defined(CONFIG_USB_BLACKFIN) || defined(CONFIG_USB_AM35X) || \ defined(CONFIG_USB_MUSB_DSPS) || defined(CONFIG_USB_MUSB_AM35X) || \ - defined(CONFIG_USB_MUSB_OMAP2PLUS) || defined(CONFIG_USB_XHCI) || \ - defined(CONFIG_USB_DWC2) + defined(CONFIG_USB_MUSB_OMAP2PLUS) || defined(CONFIG_USB_MUSB_SUNXI) || \ + defined(CONFIG_USB_XHCI) || defined(CONFIG_USB_DWC2) int usb_lowlevel_init(int index, enum usb_init_type init, void **controller); int usb_lowlevel_stop(int index); |