mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
ASoC: topology: Do not assign fields that are already set
[ Upstream commit daf0b99d4720c9f05bdb81c73b2efdb43fa9def3 ] The routes are allocated with kzalloc(), so all fields are zeroed by default, skip unnecessary assignments. Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com> Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> Link: https://lore.kernel.org/r/20240603102818.36165-4-amadeuszx.slawinski@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b188d7f3df
commit
73f5b83d73
@@ -1113,11 +1113,7 @@ static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* set to NULL atm for tplg users */
|
if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) != 0) {
|
||||||
route->connected = NULL;
|
|
||||||
if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0) {
|
|
||||||
route->control = NULL;
|
|
||||||
} else {
|
|
||||||
route->control = devm_kmemdup(tplg->dev, elem->control,
|
route->control = devm_kmemdup(tplg->dev, elem->control,
|
||||||
min(strlen(elem->control),
|
min(strlen(elem->control),
|
||||||
SNDRV_CTL_ELEM_ID_NAME_MAXLEN),
|
SNDRV_CTL_ELEM_ID_NAME_MAXLEN),
|
||||||
|
|||||||
Reference in New Issue
Block a user