diff options
author | Cezary Rojewski <cezary.rojewski@intel.com> | 2022-07-07 14:41:52 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-07-08 18:53:28 +0100 |
commit | 8758ae88f0f4ade16e6a1b709eb5ea7271f62320 (patch) | |
tree | 2f01acf251f1a4c9cd760c8094fb85872e37b6df /sound/soc/intel/avs | |
parent | 4b38bd16ca6d8b16c1dc2cc4aa61663193b0b893 (diff) | |
download | linux-stable-8758ae88f0f4ade16e6a1b709eb5ea7271f62320.tar.gz linux-stable-8758ae88f0f4ade16e6a1b709eb5ea7271f62320.tar.bz2 linux-stable-8758ae88f0f4ade16e6a1b709eb5ea7271f62320.zip |
ASoC: Intel: avs: Lower UNLOAD_MULTIPLE_MODULES IPC timeout
Module unloading operation performs memory unmapping and the weight of
the opration does not different from any other standard IPC. There is no
dependency on secondary task like in module loading scenario where
larger message timeout is recommended.
Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com>
Link: https://lore.kernel.org/r/20220707124153.1858249-12-cezary.rojewski@intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/avs')
-rw-r--r-- | sound/soc/intel/avs/messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/avs/messages.c b/sound/soc/intel/avs/messages.c index 28a948cf790f..d4bcee1aabcf 100644 --- a/sound/soc/intel/avs/messages.c +++ b/sound/soc/intel/avs/messages.c @@ -59,7 +59,7 @@ int avs_ipc_unload_modules(struct avs_dev *adev, u16 *mod_ids, u32 num_mod_ids) request.data = mod_ids; request.size = sizeof(*mod_ids) * num_mod_ids; - ret = avs_dsp_send_msg_timeout(adev, &request, NULL, AVS_CL_TIMEOUT_MS); + ret = avs_dsp_send_msg(adev, &request, NULL); if (ret) avs_ipc_err(adev, &request, "unload multiple modules", ret); |