Skip to content

Commit 847b2ae

Browse files
ranj063lgirdwood
authored andcommitted
tools: plugin: noise_suppression: Fix build error
Recent changes to UUID naming dropped the _comp in the UUID declaration. Fix the noise suppression module to adhere to the new naming while declaring the module interface and trace. Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
1 parent b55cb64 commit 847b2ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/plugin/modules/ov_noise_suppression/noise_suppression.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ LOG_MODULE_REGISTER(ns, CONFIG_SOF_LOG_LEVEL);
3131

3232
SOF_DEFINE_REG_UUID(ns);
3333

34-
DECLARE_TR_CTX(ns_comp_tr, SOF_UUID(ns_comp_uuid), LOG_LEVEL_INFO);
34+
DECLARE_TR_CTX(ns_comp_tr, SOF_UUID(ns_uuid), LOG_LEVEL_INFO);
3535

3636
static int ns_free(struct processing_module *mod)
3737
{
@@ -72,5 +72,5 @@ static const struct module_interface ns_interface = {
7272
.free = ns_free
7373
};
7474

75-
DECLARE_MODULE_ADAPTER(ns_interface, ns_comp_uuid, ns_comp_tr);
75+
DECLARE_MODULE_ADAPTER(ns_interface, ns_uuid, ns_comp_tr);
7676
SOF_MODULE_INIT(ns, sys_comp_module_ns_interface_init);

0 commit comments

Comments
 (0)