Skip to content

Commit

Permalink
llext: export symbols, needed for aria
Browse files Browse the repository at this point in the history
Aria needs additional exported symbols from SOF.

Signed-off-by: Guennadi Liakhovetski <[email protected]>
  • Loading branch information
lyakh authored and lgirdwood committed Feb 25, 2025
1 parent cbbb92b commit 93409b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/audio/component.c
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,7 @@ void cir_buf_copy(void *src, void *src_addr, void *src_end, void *dst,

#endif
EXPORT_SYMBOL(audio_stream_copy);
EXPORT_SYMBOL(cir_buf_copy);

void audio_stream_copy_from_linear(const void *linear_source, int ioffset,
struct audio_stream *sink, int ooffset,
Expand Down
6 changes: 6 additions & 0 deletions src/math/numbers.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,10 @@ EXPORT_SYMBOL(__udivdi3);

int64_t __divdi3(int64_t a, int64_t b);
EXPORT_SYMBOL(__divdi3);

long __ashldi3(long a, int b);
EXPORT_SYMBOL(__ashldi3);

long __lshrdi3(long a, int b);
EXPORT_SYMBOL(__lshrdi3);
#endif

0 comments on commit 93409b6

Please sign in to comment.