]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP: [PATCH] fixed dma BURST_4 value
authorKyungmin Park <kyungmin.park@samsung.com>
Thu, 27 Oct 2005 19:03:14 +0000 (22:03 +0300)
committerTony Lindgren <tony@atomide.com>
Thu, 27 Oct 2005 19:03:14 +0000 (22:03 +0300)
The BURST_4 is 2 instead of 1

arch/arm/plat-omap/dma.c

index 76f9ed4773082c96f840bccf0ef422524fc8a736..d86719d9fb60b97f06eada03e5415ecbee8048ef 100644 (file)
@@ -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);