diff options
author | Jack Yu <jack.yu@realtek.com> | 2023-01-30 05:43:25 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-01-30 16:05:41 +0300 |
commit | 2036890282d56bcbf7f915ba9e04bf77967ab231 (patch) | |
tree | a06a33cc042ba70d7632653bed51e72d938f990c /sound | |
parent | e18c6da62edc780e4f4f3c9ce07bdacd69505182 (diff) | |
download | linux-2036890282d56bcbf7f915ba9e04bf77967ab231.tar.xz |
ASoC: rt715-sdca: fix clock stop prepare timeout issue
Modify clock_stop_timeout value for rt715-sdca according to
the requirement of internal clock trimming.
Signed-off-by: Jack Yu <jack.yu@realtek.com>
Link: https://lore.kernel.org/r/574b6586267a458cac78c5ac4d5b10bd@realtek.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/rt715-sdca-sdw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt715-sdca-sdw.c b/sound/soc/codecs/rt715-sdca-sdw.c index 3f981a9e7fb6..c54ecf3e6987 100644 --- a/sound/soc/codecs/rt715-sdca-sdw.c +++ b/sound/soc/codecs/rt715-sdca-sdw.c @@ -167,7 +167,7 @@ static int rt715_sdca_read_prop(struct sdw_slave *slave) } /* set the timeout values */ - prop->clk_stop_timeout = 20; + prop->clk_stop_timeout = 200; return 0; } |