Skip to content

Commit 813751e

Browse files
Chen Nibroonie
authored andcommitted
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@iscas.ac.cn> Link: https://patch.msgid.link/20240905022017.1642550-1-nichen@iscas.ac.cn Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 5469484 commit 813751e

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

sound/soc/intel/boards/skl_hda_dsp_generic.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -217,14 +217,14 @@ static int skl_hda_audio_probe(struct platform_device *pdev)
217217
return -ENOMEM;
218218

219219
card = &ctx->card;
220-
card->name = "hda-dsp",
221-
card->owner = THIS_MODULE,
222-
card->dai_link = skl_hda_be_dai_links,
223-
card->dapm_widgets = skl_hda_widgets,
224-
card->dapm_routes = skl_hda_map,
225-
card->add_dai_link = skl_hda_add_dai_link,
226-
card->fully_routed = true,
227-
card->late_probe = skl_hda_card_late_probe,
220+
card->name = "hda-dsp";
221+
card->owner = THIS_MODULE;
222+
card->dai_link = skl_hda_be_dai_links;
223+
card->dapm_widgets = skl_hda_widgets;
224+
card->dapm_routes = skl_hda_map;
225+
card->add_dai_link = skl_hda_add_dai_link;
226+
card->fully_routed = true;
227+
card->late_probe = skl_hda_card_late_probe;
228228

229229
snd_soc_card_set_drvdata(card, ctx);
230230

0 commit comments

Comments
 (0)