diff options
author | Nicolin Chen <Guangyu.Chen@freescale.com> | 2014-05-06 16:42:25 +0800 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-06-17 15:36:33 +0100 |
commit | f3a30baa2876f910cbfb15b9a7442bacd8437e9d (patch) | |
tree | d7750a85da1e715477268657cbf4bb88f83f7788 /sound/soc/fsl/fsl_spdif.h | |
parent | 7171511eaec5bf23fb06078f59784a3a0626b38f (diff) |
ASoC: fsl_spdif: Improve coding style
1) Apply better indentations
2) Drop braces for single statement.
3) Use simpler ternary to reduce code.
Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/fsl/fsl_spdif.h')
-rw-r--r-- | sound/soc/fsl/fsl_spdif.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/fsl/fsl_spdif.h b/sound/soc/fsl/fsl_spdif.h index 16fde4b927d..b13e30ea1c9 100644 --- a/sound/soc/fsl/fsl_spdif.h +++ b/sound/soc/fsl/fsl_spdif.h @@ -93,6 +93,8 @@ #define SCR_USRC_SEL_RECV (0x1 << SCR_USRC_SEL_OFFSET) #define SCR_USRC_SEL_CHIP (0x3 << SCR_USRC_SEL_OFFSET) +#define SCR_DMA_xX_EN(tx) (tx ? SCR_DMA_TX_EN : SCR_DMA_RX_EN) + /* SPDIF CDText control */ #define SRCD_CD_USER_OFFSET 1 #define SRCD_CD_USER (1 << SRCD_CD_USER_OFFSET) |