> On Thu, Jan 08, 2009 at 06:01:36PM +0530, Ajay Kumar Gupta wrote: > > Mode bit should be set based on function parameter "mode" of > > configure_channel() function. > > > > Signed-off-by: Ajay Kumar Gupta <ajay.gupta@xxxxxx> > > Acked-by: Felipe Balbi <felipe.balbi@xxxxxxxxx> > NAK -- interpretation of the MODE parameter is correct > (t hough it's not clear to me that the callers set it right), > but this won't apply to current GIT since the code differs. > I don't know what this is *against* but it's not mainline > or the OMAP tree... > csr |= (musb_channel->epnum << MUSB_HSDMA_ENDPOINT_SHIFT) > | (1 << MUSB_HSDMA_ENABLE_SHIFT) > | (1 << MUSB_HSDMA_IRQENABLE_SHIFT) > | (musb_channel->transmit > ? (1 << MUSB_HSDMA_TRANSMIT_SHIFT) > : 0); >Ajay, if this needs to merge to mainline (e.g. so it can be >pulled down to omap-git and fix DMA there) please re-issue. This patch is not for mainline. It is intended for MV's OMAP GIT to solve the bug introduced by [1] below and is already applied at [2], the modified version of this patch. As [1] is not yet gone to mainline so this patch is also not required in mainline. [1] usb: musb: musbhsdma cleanup http://source.mvista.com/git/gitweb.cgi?p=linux-omap-2.6-historic.git;a=commitdiff;h=cd66af4a8d9ea5923e9e935a9d6fb7bded6e1655 [2]usb: musb: fix bug in musbhsdma programming http://source.mvista.com/git/gitweb.cgi?p=linux-omap-2.6-historic.git;a=commitdiff;h=15f75b6226c2d3b82062bb721e7cb9a1d6f35efd -Ajay >- Dave > > > --- > > drivers/usb/musb/musbhsdma.c | 3 ++- > > 1 files changed, 2 insertions(+), 1 deletions(-) > > > > diff --git a/drivers/usb/musb/musbhsdma.c b/drivers/usb/musb/musbhsdma.c > > index a23d005..d87c6c7 100644 > > --- a/drivers/usb/musb/musbhsdma.c > > +++ b/drivers/usb/musb/musbhsdma.c > > @@ -225,13 +225,14 @@ static void configure_channel(struct dma_channel *channel, > > csr |= MUSB_HSDMA_BURSTMODE_INCR4; > > > > csr |= (musb_channel->epnum << MUSB_HSDMA_ENDPOINT_SHIFT) > > - | MUSB_HSDMA_MODE1 > > | MUSB_HSDMA_ENABLE > > | MUSB_HSDMA_IRQENABLE > > | (musb_channel->transmit > > ? MUSB_HSDMA_TRANSMIT > > : 0); > > > > + if (mode) > > + csr |= MUSB_HSDMA_MODE1; > > /* address/count */ > > musb_write_hsdma_addr(mbase, bchannel, dma_addr); > > musb_write_hsdma_count(mbase, bchannel, len); > > -- > > 1.5.6 > > -- > balbi > > -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html