summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2023-06-16 09:28:27 +0200
committerTakashi Iwai <tiwai@suse.de>2023-06-16 09:28:27 +0200
commit227d2c3154a93f424503d3e4b7e157288848cf1b (patch)
tree60eba99180018c3206f358a0f0bf18b004cf670f /sound
parent122e2cb7e1a30438cc0e8bf70d4279db245d7d5b (diff)
parentf9fd804aa0a36f15a35ca070ec4c52650876cc29 (diff)
Merge tag 'asoc-fix-v6.4-rc6-2' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.4 A couple more fixes for v6.4, one fixing a misleading error log and another stopping us seeing spurious failures setting the master volume on some Tegra systems introduced by a change to how we calculate delay times.
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/tegra/tegra_pcm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/tegra/tegra_pcm.c b/sound/soc/tegra/tegra_pcm.c
index 468c8e77de21..0b69cebc9a33 100644
--- a/sound/soc/tegra/tegra_pcm.c
+++ b/sound/soc/tegra/tegra_pcm.c
@@ -117,6 +117,9 @@ int tegra_pcm_open(struct snd_soc_component *component,
return ret;
}
+ /* Set wait time to 500ms by default */
+ substream->wait_time = 500;
+
return 0;
}
EXPORT_SYMBOL_GPL(tegra_pcm_open);