[PATCH] ASoC: Intel: sof_sdw: Convert comma to semicolon

From: Chen Ni
Date: Mon Jul 08 2024 - 23:12:54 EST


Replace a comma between expression statements by a semicolon.

Signed-off-by: Chen Ni <nichen@xxxxxxxxxxx>
---
sound/soc/intel/boards/sof_sdw.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/soc/intel/boards/sof_sdw.c b/sound/soc/intel/boards/sof_sdw.c
index e94849b84a6b..e5feaef669d1 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);

--
2.25.1