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:
310fa3e
)
ALSA: hda: cs35l56: Fix lifecycle of codec pointer
author
Simon Trimmer
<simont@opensource.cirrus.com>
Fri, 31 May 2024 11:27:16 +0000
(12:27 +0100)
committer
Takashi Iwai
<tiwai@suse.de>
Fri, 31 May 2024 12:38:29 +0000
(14:38 +0200)
The codec should be cleared when the amp driver is unbound and when
resuming it should be tested to prevent loading firmware into the device
and ALSA in a partially configured system state.
Signed-off-by: Simon Trimmer <simont@opensource.cirrus.com>
Link:
https://lore.kernel.org/r/20240531112716.25323-1-simont@opensource.cirrus.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/cs35l56_hda.c
patch
|
blob
|
history
diff --git
a/sound/pci/hda/cs35l56_hda.c
b/sound/pci/hda/cs35l56_hda.c
index
11b0570
..
0923e25
100644
(file)
--- a/
sound/pci/hda/cs35l56_hda.c
+++ b/
sound/pci/hda/cs35l56_hda.c
@@
-735,6
+735,8
@@
static void cs35l56_hda_unbind(struct device *dev, struct device *master, void *
if (comps[cs35l56->index].dev == dev)
memset(&comps[cs35l56->index], 0, sizeof(*comps));
+ cs35l56->codec = NULL;
+
dev_dbg(cs35l56->base.dev, "Unbound\n");
}
@@
-840,6
+842,9
@@
static int cs35l56_hda_system_resume(struct device *dev)
cs35l56->suspended = false;
+ if (!cs35l56->codec)
+ return 0;
+
ret = cs35l56_is_fw_reload_needed(&cs35l56->base);
dev_dbg(cs35l56->base.dev, "fw_reload_needed: %d\n", ret);
if (ret > 0) {