mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-13 12:49:35 +02:00
ASoC: Intel: avs: Test result of avs_get_module_entry()
[ Upstream commit41bf4525fa
] While PROBE_MOD_UUID is always part of the base AudioDSP firmware manifest, from maintenance point of view it is better to check the result. Fixes:dab8d000e2
("ASoC: Intel: avs: Add data probing requests") Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com> Link: https://msgid.link/r/20240405090929.1184068-9-cezary.rojewski@intel.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
a1780d8a7c
commit
750e384b9b
|
@ -19,8 +19,11 @@ static int avs_dsp_init_probe(struct avs_dev *adev, union avs_connector_node_id
|
||||||
struct avs_probe_cfg cfg = {{0}};
|
struct avs_probe_cfg cfg = {{0}};
|
||||||
struct avs_module_entry mentry;
|
struct avs_module_entry mentry;
|
||||||
u8 dummy;
|
u8 dummy;
|
||||||
|
int ret;
|
||||||
|
|
||||||
avs_get_module_entry(adev, &AVS_PROBE_MOD_UUID, &mentry);
|
ret = avs_get_module_entry(adev, &AVS_PROBE_MOD_UUID, &mentry);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Probe module uses no cycles, audio data format and input and output
|
* Probe module uses no cycles, audio data format and input and output
|
||||||
|
@ -39,11 +42,12 @@ static int avs_dsp_init_probe(struct avs_dev *adev, union avs_connector_node_id
|
||||||
static void avs_dsp_delete_probe(struct avs_dev *adev)
|
static void avs_dsp_delete_probe(struct avs_dev *adev)
|
||||||
{
|
{
|
||||||
struct avs_module_entry mentry;
|
struct avs_module_entry mentry;
|
||||||
|
int ret;
|
||||||
|
|
||||||
avs_get_module_entry(adev, &AVS_PROBE_MOD_UUID, &mentry);
|
ret = avs_get_module_entry(adev, &AVS_PROBE_MOD_UUID, &mentry);
|
||||||
|
if (!ret)
|
||||||
/* There is only ever one probe module instance. */
|
/* There is only ever one probe module instance. */
|
||||||
avs_dsp_delete_module(adev, mentry.module_id, 0, INVALID_PIPELINE_ID, 0);
|
avs_dsp_delete_module(adev, mentry.module_id, 0, INVALID_PIPELINE_ID, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct hdac_ext_stream *avs_compr_get_host_stream(struct snd_compr_stream *cstream)
|
static inline struct hdac_ext_stream *avs_compr_get_host_stream(struct snd_compr_stream *cstream)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user