diff options
author | Jack Yu <jack.yu@realtek.com> | 2023-06-21 16:07:50 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-07-09 22:50:58 +0100 |
commit | 209fb30ee1c7edc6807ac94f98c9ce78b4891aed (patch) | |
tree | 27ff69dab0cd075f8c198e99d7c0323ad9741067 /sound/soc/codecs/rt722-sdca-sdw.c | |
parent | 065aa861b1243704b329a6d8407d8399614df6bd (diff) |
ASoC: rt722-sdca: Remove redundant sdca mask
Remove redundant sdca mask for clear code.
Signed-off-by: Jack Yu <jack.yu@realtek.com>
Link: https://lore.kernel.org/r/20230621080750.13511-1-jack.yu@realtek.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rt722-sdca-sdw.c')
-rw-r--r-- | sound/soc/codecs/rt722-sdca-sdw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt722-sdca-sdw.c b/sound/soc/codecs/rt722-sdca-sdw.c index cc57e4e27805..a9416bd163e8 100644 --- a/sound/soc/codecs/rt722-sdca-sdw.c +++ b/sound/soc/codecs/rt722-sdca-sdw.c @@ -175,7 +175,7 @@ static int rt722_sdca_update_status(struct sdw_slave *slave, * This also could sync with the cache value as the rt722_sdca_jack_init set. */ sdw_write_no_pm(rt722->slave, SDW_SCP_SDCA_INTMASK1, - SDW_SCP_SDCA_INTMASK_SDCA_0 | SDW_SCP_SDCA_INTMASK_SDCA_6); + SDW_SCP_SDCA_INTMASK_SDCA_6); sdw_write_no_pm(rt722->slave, SDW_SCP_SDCA_INTMASK2, SDW_SCP_SDCA_INTMASK_SDCA_8); } |