diff options
author | Jason Chen <b02280@freescale.com> | 2009-07-08 21:19:26 +0800 |
---|---|---|
committer | Jason Chen <b02280@freescale.com> | 2009-08-27 10:30:58 +0800 |
commit | 45bf725c596b43a7173f040df0227be733cce744 (patch) | |
tree | 4b0a065d4d4ce53eca0e54bbe0de37d772f47657 | |
parent | 90bf8641872b757dd18c999c1ce63a4abf889a78 (diff) |
ENGR00114073 ipuv3: use the same burst size for IC transparency channel
Transparency channel should use the 64 as burst size.
Signed-off-by: Jason Chen <b02280@freescale.com>
(cherry picked from commit 308221a1e2bd12e3ed276002fccd476463689f26)
-rw-r--r-- | drivers/mxc/ipu3/ipu_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mxc/ipu3/ipu_common.c b/drivers/mxc/ipu3/ipu_common.c index 10b38325cff0..f2d2bffedfdd 100644 --- a/drivers/mxc/ipu3/ipu_common.c +++ b/drivers/mxc/ipu3/ipu_common.c @@ -104,7 +104,7 @@ static inline uint32_t channel_2_dma(ipu_channel_t ch, ipu_buffer_t type) static inline int _ipu_is_ic_chan(uint32_t dma_chan) { - return ((dma_chan >= 11) && (dma_chan <= 22)); + return ((dma_chan >= 11) && (dma_chan <= 22) && (dma_chan != 17) && (dma_chan != 18)); } static inline int _ipu_is_ic_graphic_chan(uint32_t dma_chan) |