Skip to content

Commit

Permalink
audio: volume: fix PEAKVOL UUID with LLEXT
Browse files Browse the repository at this point in the history
Need to use "volume4" explicitly in SOF_LLEXT_MODULE_MANIFEST().

Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
  • Loading branch information
lyakh committed Feb 21, 2025
1 parent a895eb2 commit d9f4b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/volume/volume.c
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ SOF_LLEXT_MOD_ENTRY(gain, &gain_interface);

static const struct sof_man_module_manifest mod_manifest[] __section(".module") __used = {
#if CONFIG_COMP_PEAK_VOL
SOF_LLEXT_MODULE_MANIFEST("PEAKVOL", peakvol_llext_entry, 1, SOF_REG_UUID(volume), 10),
SOF_LLEXT_MODULE_MANIFEST("PEAKVOL", peakvol_llext_entry, 1, SOF_REG_UUID(volume4), 10),
#endif
#if CONFIG_COMP_GAIN
SOF_LLEXT_MODULE_MANIFEST("GAIN", gain_llext_entry, 1, SOF_REG_UUID(gain), 40),
Expand Down

0 comments on commit d9f4b7c

Please sign in to comment.