aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/ste_dma40_ll.c
diff options
context:
space:
mode:
authorRabin Vincent <rabin.vincent@stericsson.com>2010-10-12 13:00:54 +0000
committerDan Williams <dan.j.williams@intel.com>2010-10-19 15:17:07 -0700
commit51f5d744ed07a6b82e5cbbeeabd73605d62dcfc9 (patch)
treec9e0784f10734280277c3ab96f99917c7431432e /drivers/dma/ste_dma40_ll.c
parent4a6aed3c4eb69702335ed3689132d07eabaaf86d (diff)
downloadkernel_samsung_smdk4412-51f5d744ed07a6b82e5cbbeeabd73605d62dcfc9.zip
kernel_samsung_smdk4412-51f5d744ed07a6b82e5cbbeeabd73605d62dcfc9.tar.gz
kernel_samsung_smdk4412-51f5d744ed07a6b82e5cbbeeabd73605d62dcfc9.tar.bz2
ste_dma40: remove enum for endianess
A bool will suffice. The default is little endian. Acked-by: Jonas Aaberg <jonas.aberg@stericsson.com> Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma/ste_dma40_ll.c')
-rw-r--r--drivers/dma/ste_dma40_ll.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/dma/ste_dma40_ll.c b/drivers/dma/ste_dma40_ll.c
index cfc86a5..8557cb8 100644
--- a/drivers/dma/ste_dma40_ll.c
+++ b/drivers/dma/ste_dma40_ll.c
@@ -113,8 +113,10 @@ void d40_phy_cfg(struct stedma40_chan_cfg *cfg,
dst |= 1 << D40_SREG_CFG_PRI_POS;
}
- src |= cfg->src_info.endianess << D40_SREG_CFG_LBE_POS;
- dst |= cfg->dst_info.endianess << D40_SREG_CFG_LBE_POS;
+ if (cfg->src_info.big_endian)
+ src |= 1 << D40_SREG_CFG_LBE_POS;
+ if (cfg->dst_info.big_endian)
+ dst |= 1 << D40_SREG_CFG_LBE_POS;
*src_cfg = src;
*dst_cfg = dst;