From: Tony Lindgren Date: Mon, 13 Aug 2007 10:05:37 +0000 (-0700) Subject: musb_hdrc: Search and replace dwCount with len X-Git-Tag: v2.6.23-omap1~228^2~43 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=25c1c9f816b406a48fe89d015e4c741ca15039df;p=linux-2.6-omap-h63xx.git musb_hdrc: Search and replace dwCount with len Search and replace dwCount with len Signed-off-by: Tony Lindgren --- diff --git a/drivers/usb/musb/musbhsdma.c b/drivers/usb/musb/musbhsdma.c index 0209bd3c33c..6ec8f1a9d37 100644 --- a/drivers/usb/musb/musbhsdma.c +++ b/drivers/usb/musb/musbhsdma.c @@ -75,7 +75,7 @@ struct musb_dma_channel { struct dma_channel Channel; struct musb_dma_controller *pController; u32 dwStartAddress; - u32 dwCount; + u32 len; u16 wMaxPacketSize; u8 bIndex; u8 bEnd; @@ -162,7 +162,7 @@ static void dma_channel_release(struct dma_channel *pChannel) pChannel->dwActualLength = 0; pImplChannel->dwStartAddress = 0; - pImplChannel->dwCount = 0; + pImplChannel->len = 0; pImplChannel->pController->bmUsedChannels &= ~(1 << pImplChannel->bIndex); @@ -237,7 +237,7 @@ static int dma_channel_program(struct dma_channel * pChannel, pChannel->dwActualLength = 0; pImplChannel->dwStartAddress = dma_addr; - pImplChannel->dwCount = dwLength; + pImplChannel->len = dwLength; pImplChannel->wMaxPacketSize = wPacketSize; pChannel->bStatus = MGC_DMA_STATUS_BUSY; @@ -335,9 +335,9 @@ static irqreturn_t dma_controller_irq(int irq, void *pPrivateData) DBG(2, "ch %p, 0x%x -> 0x%x (%d / %d) %s\n", pChannel, pImplChannel->dwStartAddress, dwAddress, pChannel->dwActualLength, - pImplChannel->dwCount, + pImplChannel->len, (pChannel->dwActualLength < - pImplChannel->dwCount) ? + pImplChannel->len) ? "=> reconfig 0": "=> complete"); u8 devctl = musb_readb(mbase,