topology: add support for pasring external ops in conf files

Parsing external ops was missing from the conf files but was in the
C API. Fix this now by making sure we also check for external ops.

Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Liam Girdwood 2016-03-14 08:07:36 +00:00 committed by Takashi Iwai
parent 65cb4ffe3c
commit d1784ad804
3 changed files with 48 additions and 0 deletions

View file

@ -393,6 +393,14 @@ int tplg_parse_control_bytes(snd_tplg_t *tplg,
return err;
continue;
}
if (strcmp(id, "extops") == 0) {
err = tplg_parse_compound(tplg, n, tplg_parse_ext_ops,
be);
if (err < 0)
return err;
continue;
}
}
return 0;