projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c850c91
)
ALSA: hda/tas2781: add lock to system_suspend
author
Gergo Koteles
<soyer@irl.hu>
Fri, 8 Mar 2024 17:41:41 +0000
(18:41 +0100)
committer
Takashi Iwai
<tiwai@suse.de>
Mon, 11 Mar 2024 08:14:39 +0000
(09:14 +0100)
Add the missing lock around tasdevice_tuning_switch().
Fixes:
5be27f1e3ec9
("ALSA: hda/tas2781: Add tas2781 HDA driver")
Signed-off-by: Gergo Koteles <soyer@irl.hu>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Message-ID: <
c666da13d4bc48cd1ab1357479e0c6096541372c
.
1709918447
.git.soyer@irl.hu>
sound/pci/hda/tas2781_hda_i2c.c
patch
|
blob
|
history
diff --git
a/sound/pci/hda/tas2781_hda_i2c.c
b/sound/pci/hda/tas2781_hda_i2c.c
index
ee3e0af
..
750e49f
100644
(file)
--- a/
sound/pci/hda/tas2781_hda_i2c.c
+++ b/
sound/pci/hda/tas2781_hda_i2c.c
@@
-885,9
+885,13
@@
static int tas2781_system_suspend(struct device *dev)
if (ret)
return ret;
+ mutex_lock(&tas_hda->priv->codec_lock);
+
/* Shutdown chip before system suspend */
tasdevice_tuning_switch(tas_hda->priv, 1);
+ mutex_unlock(&tas_hda->priv->codec_lock);
+
/*
* Reset GPIO may be shared, so cannot reset here.
* However beyond this point, amps may be powered down.