diff options
author | Bryan Wu <bryan.wu@analog.com> | 2009-12-16 22:04:02 -0500 |
---|---|---|
committer | Remy Bohmer <linux@bohmer.net> | 2010-01-09 10:25:09 +0100 |
commit | e608f221c13943d88e86f44753e23668342c3df3 (patch) | |
tree | 1f1aaa9edfc854e119151ba91398afc98e09cf62 /drivers/usb/musb/musb_hcd.h | |
parent | bc72a919e037782f64e3ac45c91bc60408e57e85 (diff) | |
download | u-boot-imx-e608f221c13943d88e86f44753e23668342c3df3.zip u-boot-imx-e608f221c13943d88e86f44753e23668342c3df3.tar.gz u-boot-imx-e608f221c13943d88e86f44753e23668342c3df3.tar.bz2 |
usb: musb: add support for Blackfin MUSB
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Signed-off-by: Cliff Cai <cliff.cai@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Remy Bohmer <linux@bohmer.net>
Diffstat (limited to 'drivers/usb/musb/musb_hcd.h')
-rw-r--r-- | drivers/usb/musb/musb_hcd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_hcd.h b/drivers/usb/musb/musb_hcd.h index 17e9091..a437985 100644 --- a/drivers/usb/musb/musb_hcd.h +++ b/drivers/usb/musb/musb_hcd.h @@ -38,7 +38,9 @@ extern unsigned char new[]; #define MUSB_CONTROL_EP 0 /* This defines the endpoint number used for bulk transfer */ -#define MUSB_BULK_EP 1 +#ifndef MUSB_BULK_EP +# define MUSB_BULK_EP 1 +#endif /* This defines the endpoint number used for interrupt transfer */ #define MUSB_INTR_EP 2 |