Skip to content

Commit 1e7f6d3

Browse files
committed
module_adapter: generic: Don't propagate ENOSPC and ENODATA error codes
Signed-off-by: Adrian Warecki <adrian.warecki@intel.com>
1 parent 77a2213 commit 1e7f6d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/audio/module_adapter/module/generic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ int module_process_sink_src(struct processing_module *mod,
300300
/* reset state to idle */
301301
md->state = MODULE_IDLE;
302302
#endif
303-
return ret;
303+
return 0;
304304
}
305305

306306
int module_reset(struct processing_module *mod)

0 commit comments

Comments
 (0)