Commit b6c43e7b authored by Tony Lindgren's avatar Tony Lindgren

MUSB: Fix TUSB DMA register access

It got broken by musb-m1 snapshot.
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent a125babc
......@@ -143,7 +143,7 @@ static void tusb_omap_dma_cb(int lch, u16 ch_status, void *data)
struct tusb_omap_dma *tusb_dma = chdat->tusb_dma;
struct musb *musb = chdat->musb;
struct musb_hw_ep *hw_ep = chdat->hw_ep;
void __iomem *ep_conf = hw_ep->regs;
void __iomem *ep_conf = hw_ep->conf;
void __iomem *musb_base = musb->pRegs;
unsigned long transferred, flags;
int ch;
......@@ -211,7 +211,7 @@ static int tusb_omap_dma_program(struct dma_channel *channel, u16 packet_sz,
struct musb *musb = chdat->musb;
struct musb_hw_ep *hw_ep = chdat->hw_ep;
void __iomem *musb_base = musb->pRegs;
void __iomem *ep_conf = hw_ep->regs;
void __iomem *ep_conf = hw_ep->conf;
dma_addr_t fifo = hw_ep->fifo_sync;
struct omap_dma_channel_params dma_params;
int src_burst, dst_burst;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment