Skip to content

Commit

Permalink
(Continued)
Browse files Browse the repository at this point in the history
  • Loading branch information
wberube committed May 21, 2024
1 parent 7b3db72 commit 9bb983d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hal/hisi/v3_aud.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ typedef struct {
} v3_aud_impl;

static int v3_aud_load(v3_aud_impl *aud_lib) {
if (!(aud_lib->handle = dlopen("libmi_ai.so", RTLD_LAZY | RTLD_GLOBAL))) {
if (!(aud_lib->handle = dlopen("libmpi.so", RTLD_LAZY | RTLD_GLOBAL))) {
fprintf(stderr, "[v3_aud] Failed to load library!\nError: %s\n", dlerror());
return EXIT_FAILURE;
}
Expand Down
2 changes: 1 addition & 1 deletion src/hal/hisi/v3_hal.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void v3_audio_deinit(void)
v3_aud.fnDisableDevice(_v3_aud_dev);
}

int i6_audio_init(void)
int v3_audio_init(void)
{
int ret;

Expand Down

0 comments on commit 9bb983d

Please sign in to comment.