]> www.infradead.org Git - nvme.git/commitdiff
ASoC: topology: Do not assign fields that are already set
authorAmadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Mon, 3 Jun 2024 10:28:17 +0000 (12:28 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 10 Jun 2024 11:47:19 +0000 (12:47 +0100)
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>
sound/soc/soc-topology.c

index 75d9395a18ed494e47afd415627db5db075a93e6..1db540aaad451f22a6225e67423dbd6fe236d130 100644 (file)
@@ -1072,11 +1072,7 @@ static int soc_tplg_dapm_graph_elems_load(struct soc_tplg *tplg,
                        break;
                }
 
-               /* set to NULL atm for tplg users */
-               route->connected = NULL;
-               if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) == 0) {
-                       route->control = NULL;
-               } else {
+               if (strnlen(elem->control, SNDRV_CTL_ELEM_ID_NAME_MAXLEN) != 0) {
                        route->control = devm_kmemdup(tplg->dev, elem->control,
                                                      min(strlen(elem->control),
                                                          SNDRV_CTL_ELEM_ID_NAME_MAXLEN),