Skip to content

Commit

Permalink
Tools: Rimage: Config: Add mfcc.toml include for MTL, LNL, PTL
Browse files Browse the repository at this point in the history
The MFCC component is not loading in these platforms due to
missing edit to <platform>.toml.h.

As editorial change the missing newline in the end of
ptl.toml.h is fixed.

Fixes: f7715b8
       ("Audio: MFCC: Fix build of component for current SOF")

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
  • Loading branch information
singalsu authored and lgirdwood committed Sep 2, 2024
1 parent 728fb98 commit 298687c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions tools/rimage/config/lnl.toml.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,9 @@
#include <audio/igo_nr/igo_nr.toml>
#endif

#ifdef CONFIG_COMP_MFCC
#include <audio/mfcc/mfcc.toml>
#endif

[module]
count = __COUNTER__
4 changes: 4 additions & 0 deletions tools/rimage/config/mtl.toml.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,9 @@
#include <audio/igo_nr/igo_nr.toml>
#endif

#ifdef CONFIG_COMP_MFCC
#include <audio/mfcc/mfcc.toml>
#endif

[module]
count = __COUNTER__
6 changes: 5 additions & 1 deletion tools/rimage/config/ptl.toml.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,9 @@ index = __COUNTER__
#include <audio/igo_nr/igo_nr.toml>
#endif

#ifdef CONFIG_COMP_MFCC
#include <audio/mfcc/mfcc.toml>
#endif

[module]
count = __COUNTER__
count = __COUNTER__

0 comments on commit 298687c

Please sign in to comment.