| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | #ifndef HW_AUDIO_MODEL_H |
| 3 | #define HW_AUDIO_MODEL_H |
| 4 | |
| 5 | void audio_register_model_with_cb(const char *name, const char *descr, |
| 6 | void (*init_audio_model)(const char *audiodev)); |
| 7 | void audio_register_model(const char *name, const char *descr, |
| 8 | const char *typename); |
| 9 | |
| 10 | void audio_model_init(void); |
| 11 | void audio_print_available_models(void); |
| 12 | void audio_set_model(const char *name, const char *audiodev); |
| 13 | |
| 14 | #endif |