]> rtime.felk.cvut.cz Git - lisovros/linux_canprio.git/commitdiff
SH: fix TS field shift calculation for DMA drivers
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Wed, 21 Apr 2010 15:14:19 +0000 (15:14 +0000)
committerPaul Mundt <lethal@linux-sh.org>
Mon, 26 Apr 2010 07:02:09 +0000 (16:02 +0900)
CHCR_TS_HIGH_SHIFT is defined as a shift of TS high bits in CHCR register,
relative to low bits. The TS_INDEX2VAL() macro has to take this into account.

Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/include/cpu-sh4/cpu/dma-register.h

index 55f9fec082d4a55d6c047829f897ca40ef985ad3..de23595339940728e89a2f8d7f513445a1ea5fc9 100644 (file)
@@ -76,7 +76,7 @@ enum {
 }
 
 #define TS_INDEX2VAL(i)        ((((i) & 3) << CHCR_TS_LOW_SHIFT) | \
-                        ((((i) >> 2) & 3) << CHCR_TS_HIGH_SHIFT))
+                        (((i) & 0xc) << CHCR_TS_HIGH_SHIFT))
 
 #else /* CONFIG_CPU_SH4A */