X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=drivers%2Fusb%2Fmusb%2Fmusb_core.c;h=545ebf4b502322cdecd71ddd2b5cc72ff24f209a;hb=f04821a8ca714459481bd9fd315af2b5f92d99a6;hp=dc740cf18e475e9806683561feb39f2e93771dc3;hpb=9bb47abf0d88e2dd151b36b39bf64c6593f417c8;p=oweals%2Fu-boot.git diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index dc740cf18e..545ebf4b50 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c @@ -76,7 +76,7 @@ void musb_start(void) * epinfo - Pointer to EP configuration table * cnt - Number of entries in the EP conf table. */ -void musb_configure_ep(struct musb_epinfo *epinfo, u8 cnt) +void musb_configure_ep(const struct musb_epinfo *epinfo, u8 cnt) { u16 csr; u16 fifoaddr = 64; /* First 64 bytes of FIFO reserved for EP0 */ @@ -141,6 +141,11 @@ void write_fifo(u8 ep, u32 length, void *fifo_data) writeb(*data++, &musbr->fifox[ep]); } +/* + * AM35x supports only 32bit read operations so + * use seperate read_fifo() function for it. + */ +#ifndef CONFIG_USB_AM35X /* * This function reads data from endpoint fifo * @@ -160,3 +165,4 @@ void read_fifo(u8 ep, u32 length, void *fifo_data) while (length--) *data++ = readb(&musbr->fifox[ep]); } +#endif /* CONFIG_USB_AM35X */