diff options
author | Guennadi Liakhovetski <[email protected]> | 2020-08-24 15:09:05 -0500 |
---|---|---|
committer | Mark Brown <[email protected]> | 2020-08-25 20:39:33 +0100 |
commit | c81a4ef725362dbce890a24d62e745f57172718a (patch) | |
tree | 568713e794a3c5c95e58f777ad44c5e049d73a13 | |
parent | aafdeba5cbc14cecee3797e669473b70a2b3e81e (diff) |
ASoC: SOF: topology: (cosmetic) remove redundant variable initialisations
Remove two cases of redundant variable initialisation.
Reviewed-by: Kai Vehmanen <[email protected]>
Signed-off-by: Guennadi Liakhovetski <[email protected]>
Signed-off-by: Pierre-Louis Bossart <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/sof/topology.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/sof/topology.c b/sound/soc/sof/topology.c index 13e10a0c0b05..3b4e09089643 100644 --- a/sound/soc/sof/topology.c +++ b/sound/soc/sof/topology.c @@ -2083,12 +2083,12 @@ static int sof_process_load(struct snd_soc_component *scomp, int index, struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(scomp); struct snd_soc_dapm_widget *widget = swidget->widget; struct snd_soc_tplg_private *private = &tw->priv; - struct sof_ipc_comp_process *process = NULL; + struct sof_ipc_comp_process *process; struct sof_widget_data *wdata = NULL; size_t ipc_data_size = 0; size_t ipc_size; int offset = 0; - int ret = 0; + int ret; int i; if (type == SOF_COMP_NONE) { |