Patch "ASoC: codecs: es8326: Fix DTS properties reading" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    ASoC: codecs: es8326: Fix DTS properties reading

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     asoc-codecs-es8326-fix-dts-properties-reading.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit ad8cfbad21144b4c3a59ed0e7d7ade4d587ab009
Author: Alexey Firago <a.firago@xxxxxxxxx>
Date:   Sat Feb 4 22:51:06 2023 +0300

    ASoC: codecs: es8326: Fix DTS properties reading
    
    [ Upstream commit fe1e7e8ce2c47bd8fd9885eab63fca0a522e94c9 ]
    
    Seems like properties parsing and reading was copy-pasted,
    so "everest,interrupt-src" and "everest,interrupt-clk" are saved into
    the es8326->jack_pol variable. This might lead to wrong settings
    being saved into the reg 57 (ES8326_HP_DET).
    
    Fix this by using proper variables while reading properties.
    
    Signed-off-by: Alexey Firago <a.firago@xxxxxxxxx>
    Reviewed-by: Yang Yingliang <yangyingliang@xxxxxxxxxx
    Link: https://lore.kernel.org/r/20230204195106.46539-1-a.firago@xxxxxxxxx
    Signed-off-by: Mark Brown <broonie@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/sound/soc/codecs/es8326.c b/sound/soc/codecs/es8326.c
index 87c1cc16592bb..555125efd9ad3 100644
--- a/sound/soc/codecs/es8326.c
+++ b/sound/soc/codecs/es8326.c
@@ -729,14 +729,16 @@ static int es8326_probe(struct snd_soc_component *component)
 	}
 	dev_dbg(component->dev, "jack-pol %x", es8326->jack_pol);
 
-	ret = device_property_read_u8(component->dev, "everest,interrupt-src", &es8326->jack_pol);
+	ret = device_property_read_u8(component->dev, "everest,interrupt-src",
+				      &es8326->interrupt_src);
 	if (ret != 0) {
 		dev_dbg(component->dev, "interrupt-src return %d", ret);
 		es8326->interrupt_src = ES8326_HP_DET_SRC_PIN9;
 	}
 	dev_dbg(component->dev, "interrupt-src %x", es8326->interrupt_src);
 
-	ret = device_property_read_u8(component->dev, "everest,interrupt-clk", &es8326->jack_pol);
+	ret = device_property_read_u8(component->dev, "everest,interrupt-clk",
+				      &es8326->interrupt_clk);
 	if (ret != 0) {
 		dev_dbg(component->dev, "interrupt-clk return %d", ret);
 		es8326->interrupt_clk = 0x45;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux