[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240905022017.1642550-1-nichen@iscas.ac.cn>
Date: Thu, 5 Sep 2024 10:20:17 +0800
From: Chen Ni <nichen@...as.ac.cn>
To: cezary.rojewski@...el.com,
pierre-louis.bossart@...ux.intel.com,
liam.r.girdwood@...ux.intel.com,
peter.ujfalusi@...ux.intel.com,
yung-chuan.liao@...ux.intel.com,
ranjani.sridharan@...ux.intel.com,
kai.vehmanen@...ux.intel.com,
broonie@...nel.org,
perex@...ex.cz,
tiwai@...e.com,
brent.lu@...el.com,
kuninori.morimoto.gx@...esas.com
Cc: alsa-devel@...a-project.org,
linux-sound@...r.kernel.org,
linux-kernel@...r.kernel.org,
Chen Ni <nichen@...as.ac.cn>
Subject: [PATCH] ASoC: Intel: skl_hda_dsp_generic: convert comma to semicolon
Replace comma between expressions with semicolons.
Using a ',' in place of a ';' can have unintended side effects.
Although that is not the case here, it is seems best to use ';'
unless ',' is intended.
Found by inspection.
No functional change intended.
Compile tested only.
Signed-off-by: Chen Ni <nichen@...as.ac.cn>
---
sound/soc/intel/boards/skl_hda_dsp_generic.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/sound/soc/intel/boards/skl_hda_dsp_generic.c b/sound/soc/intel/boards/skl_hda_dsp_generic.c
index 225867bb3310..8e104874d58c 100644
--- a/sound/soc/intel/boards/skl_hda_dsp_generic.c
+++ b/sound/soc/intel/boards/skl_hda_dsp_generic.c
@@ -217,14 +217,14 @@ static int skl_hda_audio_probe(struct platform_device *pdev)
return -ENOMEM;
card = &ctx->card;
- card->name = "hda-dsp",
- card->owner = THIS_MODULE,
- card->dai_link = skl_hda_be_dai_links,
- card->dapm_widgets = skl_hda_widgets,
- card->dapm_routes = skl_hda_map,
- card->add_dai_link = skl_hda_add_dai_link,
- card->fully_routed = true,
- card->late_probe = skl_hda_card_late_probe,
+ card->name = "hda-dsp";
+ card->owner = THIS_MODULE;
+ card->dai_link = skl_hda_be_dai_links;
+ card->dapm_widgets = skl_hda_widgets;
+ card->dapm_routes = skl_hda_map;
+ card->add_dai_link = skl_hda_add_dai_link;
+ card->fully_routed = true;
+ card->late_probe = skl_hda_card_late_probe;
snd_soc_card_set_drvdata(card, ctx);
--
2.25.1
Powered by blists - more mailing lists