diff options
| author | Swaminathan S <[email protected]> | 2009-01-24 17:57:37 -0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2009-01-27 16:15:35 -0800 |
| commit | 191b776616838f035c2fe7eecc882b5c1f134353 (patch) | |
| tree | 0f11bb71b67a584afc31fad33017ac0ba89d127c | |
| parent | 704a14854aaf9758a1248ea36a7d1b8cc42a4b3e (diff) | |
USB: musb cppi dma fix
Initializes the actual_len field to 0 before every DMA transaction.
Signed-off-by: Swaminathan S <[email protected]>
Acked-by: Felipe Balbi <[email protected]>
Signed-off-by: David Brownell <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/usb/musb/cppi_dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/musb/cppi_dma.c b/drivers/usb/musb/cppi_dma.c index d8d5345519c9..569ef0fed0f6 100644 --- a/drivers/usb/musb/cppi_dma.c +++ b/drivers/usb/musb/cppi_dma.c @@ -995,6 +995,7 @@ static int cppi_channel_program(struct dma_channel *ch, cppi_ch->offset = 0; cppi_ch->maxpacket = maxpacket; cppi_ch->buf_len = len; + cppi_ch->channel.actual_len = 0; /* TX channel? or RX? */ if (cppi_ch->transmit) |