diff options
author | Kuninori Morimoto <[email protected]> | 2022-10-19 00:37:00 +0000 |
---|---|---|
committer | Mark Brown <[email protected]> | 2022-10-19 13:05:31 +0100 |
commit | 5a7c2e962e42d19bf08ffe0ed56b40ba23717e2b (patch) | |
tree | 35e64993bf5dcd9880e4de4511f7e193f39fcb90 /tools/perf/scripts/python/net_dropmonitor.py | |
parent | 9941ba4baed0a4388028e2ce3ff769d50324068a (diff) |
ASoC: soc-dapm.c: cleanup snd_soc_dapm_new_dai()
snd_soc_dapm_new_dai() setups local variable "template" at (X) and (Y),
which is used at (Z). But these are difficult to read.
static struct snd_soc_dapm_widget * snd_soc_dapm_new_dai()
{
...
^ template.reg = ...
| template.id = ...
(X) template.name = ...
| template.event = ...
| template.event_flags = ...
v template.kcontrol_news = ...
if (rtd->dai_link->num_params > 1) {
...
^ template.num_kcontrols = ...
(Y) template.kcontrol_news = ...
v ...
}
...
(Z) w = snd_soc_dapm_new_control_unlocked(..., &template);
}
And this function has error message, but not for all cases.
This patch (1) setups "template" in one place, and indicate error message
for all cases. This patch cleanup the code, but nothing changed for
meaning.
Signed-off-by: Kuninori Morimoto <[email protected]>
Reviewed-by: Amadeusz Sławiński <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/net_dropmonitor.py')
0 files changed, 0 insertions, 0 deletions