]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: Intel: skl_hda_dsp_generic: convert comma to semicolon
authorChen Ni <nichen@iscas.ac.cn>
Thu, 5 Sep 2024 02:20:17 +0000 (10:20 +0800)
committerMark Brown <broonie@kernel.org>
Thu, 5 Sep 2024 15:07:07 +0000 (16:07 +0100)
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@iscas.ac.cn>
Link: https://patch.msgid.link/20240905022017.1642550-1-nichen@iscas.ac.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/skl_hda_dsp_generic.c

index 225867bb3310a25ab27b7e2b125df00eb012dd7d..8e104874d58c7d0f8e96467f389e6f16d4be117c 100644 (file)
@@ -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);