That's no longer necessary, the code is bus-agnostic. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
14 lines
506 B
C
14 lines
506 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef HW_AUDIO_MODEL_H
|
|
#define HW_AUDIO_MODEL_H
|
|
|
|
void audio_register_model_with_cb(const char *name, const char *descr,
|
|
void (*init_audio_model)(const char *audiodev));
|
|
void audio_register_model(const char *name, const char *descr,
|
|
const char *typename);
|
|
|
|
void audio_model_init(void);
|
|
void audio_print_available_models(void);
|
|
void audio_set_model(const char *name, const char *audiodev);
|
|
|
|
#endif
|