Unverified Commit 813751ea authored by Chen Ni's avatar Chen Ni Committed by Mark Brown
Browse files

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: default avatarChen Ni <nichen@iscas.ac.cn>
Link: https://patch.msgid.link/20240905022017.1642550-1-nichen@iscas.ac.cn


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 54694840
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -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);