From d05bd80593d5b1dd82aa41f43d4adef82f717621 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 25 May 2020 19:07:12 +0200 Subject: [PATCH] ucm: rename SectionOnce to BootSequence Signed-off-by: Jaroslav Kysela --- src/ucm/parser.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ucm/parser.c b/src/ucm/parser.c index fa71577d..16978033 100644 --- a/src/ucm/parser.c +++ b/src/ucm/parser.c @@ -1513,7 +1513,7 @@ static int parse_master_section(snd_use_case_mgr_t *uc_mgr, snd_config_t *cfg, /* * parse controls which should be run only at initial boot */ -static int parse_controls_once(snd_use_case_mgr_t *uc_mgr, snd_config_t *cfg) +static int parse_controls_boot(snd_use_case_mgr_t *uc_mgr, snd_config_t *cfg) { int err; @@ -1523,7 +1523,7 @@ static int parse_controls_once(snd_use_case_mgr_t *uc_mgr, snd_config_t *cfg) } err = parse_sequence(uc_mgr, &uc_mgr->once_list, cfg); if (err < 0) { - uc_error("Unable to parse SectionOnce"); + uc_error("Unable to parse BootSequence"); return err; } @@ -1580,7 +1580,7 @@ static int parse_controls(snd_use_case_mgr_t *uc_mgr, snd_config_t *cfg) * * # The initial boot (run once) configuration. * - * SectionOnce [ + * BootSequence [ * cset "name='Master Playback Switch',index=2 1,1" * cset "name='Master Playback Volume',index=2 25,25" * ] @@ -1662,8 +1662,8 @@ static int parse_master_file(snd_use_case_mgr_t *uc_mgr, snd_config_t *cfg) } /* find default control values section (first boot only) */ - if (strcmp(id, "SectionOnce") == 0) { - err = parse_controls_once(uc_mgr, n); + if (strcmp(id, "BootSequence") == 0) { + err = parse_controls_boot(uc_mgr, n); if (err < 0) return err; continue; -- 2.47.1