Commit e0e7bc2c authored by Amadeusz Sławiński's avatar Amadeusz Sławiński Committed by Mark Brown

ASoC: topology: Clean up route loading

Instead of using very long macro name, assign it to shorter variable
and use it instead. While doing that, we can reduce multiple if checks
using this define to one.
Reviewed-by: default avatarCezary Rojewski <cezary.rojewski@intel.com>
Signed-off-by: default avatarAmadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Link: https://lore.kernel.org/r/20240603102818.36165-5-amadeuszx.slawinski@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent daf0b99d
...@@ -1021,6 +1021,7 @@ static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg, ...@@ -1021,6 +1021,7 @@ static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
struct snd_soc_tplg_hdr *hdr) struct snd_soc_tplg_hdr *hdr)
{ {
struct snd_soc_dapm_context *dapm = &tplg->comp->dapm; struct snd_soc_dapm_context *dapm = &tplg->comp->dapm;
const size_t maxlen = SNDRV_CTL_ELEM_ID_NAME_MAXLEN;
struct snd_soc_tplg_dapm_graph_elem *elem; struct snd_soc_tplg_dapm_graph_elem *elem;
struct snd_soc_dapm_route *route; struct snd_soc_dapm_route *route;
int count, i; int count, i;
...@@ -1044,38 +1045,27 @@ static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg, ...@@ -1044,38 +1045,27 @@ static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem); tplg->pos += sizeof(struct snd_soc_tplg_dapm_graph_elem);
/* validate routes */ /* validate routes */
if (strnlen(elem->source, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == if ((strnlen(elem->source, maxlen) == maxlen) ||
SNDRV_CTL_ELEM_ID_NAME_MAXLEN) { (strnlen(elem->sink, maxlen) == maxlen) ||
ret = -EINVAL; (strnlen(elem->control, maxlen) == maxlen)) {
break;
}
if (strnlen(elem->sink, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
ret = -EINVAL;
break;
}
if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) ==
SNDRV_CTL_ELEM_ID_NAME_MAXLEN) {
ret = -EINVAL; ret = -EINVAL;
break; break;
} }
route->source = devm_kmemdup(tplg->dev, elem->source, route->source = devm_kmemdup(tplg->dev, elem->source,
min(strlen(elem->source), min(strlen(elem->source), maxlen),
SNDRV_CTL_ELEM_ID_NAME_MAXLEN),
GFP_KERNEL); GFP_KERNEL);
route->sink = devm_kmemdup(tplg->dev, elem->sink, route->sink = devm_kmemdup(tplg->dev, elem->sink,
min(strlen(elem->sink), SNDRV_CTL_ELEM_ID_NAME_MAXLEN), min(strlen(elem->sink), maxlen),
GFP_KERNEL); GFP_KERNEL);
if (!route->source || !route->sink) { if (!route->source || !route->sink) {
ret = -ENOMEM; ret = -ENOMEM;
break; break;
} }
if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) != 0) { if (strnlen(elem->control, maxlen) != 0) {
route->control = devm_kmemdup(tplg->dev, elem->control, route->control = devm_kmemdup(tplg->dev, elem->control,
min(strlen(elem->control), min(strlen(elem->control), maxlen),
SNDRV_CTL_ELEM_ID_NAME_MAXLEN),
GFP_KERNEL); GFP_KERNEL);
if (!route->control) { if (!route->control) {
ret = -ENOMEM; ret = -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment