From: Chen Ni Date: Tue, 9 Jul 2024 03:09:21 +0000 (+0800) Subject: ASoC: Intel: sof_sdw: Convert comma to semicolon X-Git-Tag: v6.11-rc1~108^2~6^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e52a73e694522c7c94369a7741717a9f50baca0b;p=thirdparty%2Fkernel%2Flinux.git ASoC: Intel: sof_sdw: Convert comma to semicolon Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni Link: https://patch.msgid.link/20240709030921.585740-1-nichen@iscas.ac.cn Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/boards/sof_sdw.c b/sound/soc/intel/boards/sof_sdw.c index e94849b84a6b4..e5feaef669d14 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -2136,9 +2136,9 @@ static int mc_probe(struct platform_device *pdev) card = &ctx->card; card->dev = &pdev->dev; - card->name = "soundwire", - card->owner = THIS_MODULE, - card->late_probe = sof_sdw_card_late_probe, + card->name = "soundwire"; + card->owner = THIS_MODULE; + card->late_probe = sof_sdw_card_late_probe; snd_soc_card_set_drvdata(card, ctx);