From: Kyungmin Park Date: Thu, 27 Oct 2005 19:03:14 +0000 (+0300) Subject: ARM: OMAP: [PATCH] fixed dma BURST_4 value X-Git-Tag: v2.6.15-omap2~128 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=e3a251dec4d69144a580a9d8ce7c66ca3f392a64;p=linux-2.6-omap-h63xx.git ARM: OMAP: [PATCH] fixed dma BURST_4 value The BURST_4 is 2 instead of 1 --- diff --git a/arch/arm/plat-omap/dma.c b/arch/arm/plat-omap/dma.c index 76f9ed47730..d86719d9fb6 100644 --- a/arch/arm/plat-omap/dma.c +++ b/arch/arm/plat-omap/dma.c @@ -221,7 +221,7 @@ void omap_set_dma_src_burst_mode(int lch, enum omap_dma_burst_mode burst_mode) case OMAP_DMA_DATA_BURST_DIS: break; case OMAP_DMA_DATA_BURST_4: - w |= (0x01 << 7); + w |= (0x02 << 7); break; case OMAP_DMA_DATA_BURST_8: /* not supported by current hardware @@ -277,7 +277,7 @@ void omap_set_dma_dest_burst_mode(int lch, enum omap_dma_burst_mode burst_mode) case OMAP_DMA_DATA_BURST_DIS: break; case OMAP_DMA_DATA_BURST_4: - w |= (0x01 << 14); + w |= (0x02 << 14); break; case OMAP_DMA_DATA_BURST_8: w |= (0x03 << 14);