diff options
Diffstat (limited to 'src/mixer_api.h')
-rw-r--r-- | src/mixer_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mixer_api.h b/src/mixer_api.h index 67d08427c..61f6c06f2 100644 --- a/src/mixer_api.h +++ b/src/mixer_api.h @@ -28,7 +28,7 @@ struct mixer_plugin { /** * Setup and configure mixer */ - void (*configure)(struct mixer_data *data, ConfigParam *param); + void (*configure)(struct mixer_data *data, struct config_param *param); /** * Open mixer device @@ -53,7 +53,7 @@ struct mixer { void mixer_init(struct mixer *mixer, struct mixer_plugin *plugin); void mixer_finish(struct mixer *mixer); -void mixer_configure(struct mixer *mixer, ConfigParam *param); +void mixer_configure(struct mixer *mixer, struct config_param *param); bool mixer_open(struct mixer *mixer); bool mixer_control(struct mixer *mixer, int cmd, void *arg); void mixer_close(struct mixer *mixer); |