ucm: rename once_list to boot_list

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2020-10-06 10:47:11 +02:00
parent 61749cf400
commit 2b217b7010
4 changed files with 9 additions and 9 deletions

View file

@ -1746,11 +1746,11 @@ static int parse_controls_boot(snd_use_case_mgr_t *uc_mgr, snd_config_t *cfg)
{
int err;
if (!list_empty(&uc_mgr->once_list)) {
uc_error("Once list is not empty");
if (!list_empty(&uc_mgr->boot_list)) {
uc_error("Boot list is not empty");
return -EINVAL;
}
err = parse_sequence(uc_mgr, &uc_mgr->once_list, cfg);
err = parse_sequence(uc_mgr, &uc_mgr->boot_list, cfg);
if (err < 0) {
uc_error("Unable to parse BootSequence");
return err;