ASoC: codecs: tx-macro: Simplify setting AMIC control
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Fri, 2 Feb 2024 15:41:34 +0000 (16:41 +0100)
committerMark Brown <broonie@kernel.org>
Tue, 13 Feb 2024 17:36:02 +0000 (17:36 +0000)
When updating all bits in AMIC control registers (mask 0xff), use more
obvious snd_soc_component_write().  Replace also hard-coded value 0x00
with a define.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://msgid.link/r/20240202154134.66967-4-krzysztof.kozlowski@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/lpass-tx-macro.c

index 2d4f6c04332bde7687de578fa9917387f73c3bf0..7e51212d45039d6f4c16362871231b4a44fb6082 100644 (file)
@@ -1850,8 +1850,10 @@ static int tx_macro_component_probe(struct snd_soc_component *comp)
        snd_soc_component_update_bits(comp, CDC_TX0_TX_PATH_SEC7, 0x3F,
                                      0x0A);
        /* Enable swr mic0 and mic1 clock */
-       snd_soc_component_update_bits(comp, CDC_TX_TOP_CSR_SWR_AMIC0_CTL, 0xFF, 0x00);
-       snd_soc_component_update_bits(comp, CDC_TX_TOP_CSR_SWR_AMIC1_CTL, 0xFF, 0x00);
+       snd_soc_component_write(comp, CDC_TX_TOP_CSR_SWR_AMIC0_CTL,
+                               CDC_TX_SWR_MIC_CLK_DEFAULT);
+       snd_soc_component_write(comp, CDC_TX_TOP_CSR_SWR_AMIC1_CTL,
+                               CDC_TX_SWR_MIC_CLK_DEFAULT);
 
        return 0;
 }