Skip to content

Commit

Permalink
audio: google: constify ops drivers
Browse files Browse the repository at this point in the history
Never gonna give you up
Never gonna let you down
Never gonna run around and modify you

Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
  • Loading branch information
cujomalainey authored and dbaluta committed Oct 11, 2024
1 parent 659b62f commit 538006a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/audio/google/google_ctc_audio_processing.c
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ static int ctc_process(struct processing_module *mod,
return 0;
}

static struct module_interface google_ctc_audio_processing_interface = {
static const struct module_interface google_ctc_audio_processing_interface = {
.init = ctc_init,
.free = ctc_free,
.process_audio_stream = ctc_process,
Expand Down
2 changes: 1 addition & 1 deletion src/audio/google/google_rtc_audio_processing.c
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ static int mod_process(struct processing_module *mod, struct sof_source **source
return 0;
}

static struct module_interface google_rtc_audio_processing_interface = {
static const struct module_interface google_rtc_audio_processing_interface = {
.init = google_rtc_audio_processing_init,
.free = google_rtc_audio_processing_free,
.process = mod_process,
Expand Down

0 comments on commit 538006a

Please sign in to comment.