forked from Minki/linux
ASoC: tas2562: Fix misuse of GENMASK macro
Arguments are supposed to be ordered high then low.
Fixes: c173dba44c
("ASoC: tas2562: Introduce the TAS2562 amplifier")
Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Link: https://lore.kernel.org/r/20191015200900.25798-1-rikard.falkeborn@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
8de6e75506
commit
0e4b871757
@ -62,7 +62,7 @@
|
||||
|
||||
#define TAS2562_TDM_CFG2_RIGHT_JUSTIFY BIT(6)
|
||||
|
||||
#define TAS2562_TDM_CFG2_RXLEN_MASK GENMASK(0, 1)
|
||||
#define TAS2562_TDM_CFG2_RXLEN_MASK GENMASK(1, 0)
|
||||
#define TAS2562_TDM_CFG2_RXLEN_16B 0x0
|
||||
#define TAS2562_TDM_CFG2_RXLEN_24B BIT(0)
|
||||
#define TAS2562_TDM_CFG2_RXLEN_32B BIT(1)
|
||||
|
Loading…
Reference in New Issue
Block a user