mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-10 06:34:17 +08:00
ASoC: fsl_asrc: protect macro argument
Protect macro argument with parentheses to avoid ambiguity. This fixes a warning seen with clang: warning: logical not is only applied to the left hand side of this comparison Signed-off-by: Stefan Agner <stefan@agner.ch> Acked-by: Nicolin Chen <nicoleotsuka@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
4fbd8d194f
commit
d1b726a901
@ -57,7 +57,7 @@
|
||||
#define REG_ASRDOC 0x74
|
||||
#define REG_ASRDI(i) (REG_ASRDIA + (i << 3))
|
||||
#define REG_ASRDO(i) (REG_ASRDOA + (i << 3))
|
||||
#define REG_ASRDx(x, i) (x == IN ? REG_ASRDI(i) : REG_ASRDO(i))
|
||||
#define REG_ASRDx(x, i) ((x) == IN ? REG_ASRDI(i) : REG_ASRDO(i))
|
||||
|
||||
#define REG_ASRIDRHA 0x80
|
||||
#define REG_ASRIDRLA 0x84
|
||||
|
Loading…
Reference in New Issue
Block a user